SecureStoreServiceApplicationProxy.RedeemTicket method
NOTE: This API is now obsolete.
Gets the credentials for the specified ticket and the specified target application.
Namespace: Microsoft.Office.SecureStoreService.Server
Assembly: Microsoft.Office.SecureStoreService (in Microsoft.Office.SecureStoreService.dll)
Syntax
'Declaration
<ObsoleteAttribute("Use the ISecureStore interface to call into the SSS OM")> _
Public Function RedeemTicket ( _
applicationId As String, _
base64EncodedTicket As String _
) As SecureStoreCredentialCollection
'Usage
Dim instance As SecureStoreServiceApplicationProxy
Dim applicationId As String
Dim base64EncodedTicket As String
Dim returnValue As SecureStoreCredentialCollection
returnValue = instance.RedeemTicket(applicationId, _
base64EncodedTicket)
[ObsoleteAttribute("Use the ISecureStore interface to call into the SSS OM")]
public SecureStoreCredentialCollection RedeemTicket(
string applicationId,
string base64EncodedTicket
)
Parameters
applicationId
Type: System.StringThe target application ID.
base64EncodedTicket
Type: System.StringThe base64-encoded string that represents the ticket.
Return value
Type: Microsoft.BusinessData.Infrastructure.SecureStore.SecureStoreCredentialCollection
The credentials of the target application.
Remarks
The caller must be a ticket redeemer for the specified target application.
Since this method is obsolete, you should invoke it through the ISecureStore interface instead.
See also
Reference
SecureStoreServiceApplicationProxy class