SecureStoreServiceApplication.IssueTicket Method
Issues a ticket to the current caller.
Namespace: Microsoft.Office.SecureStoreService.Server
Assembly: Microsoft.Office.SecureStoreService (in Microsoft.Office.SecureStoreService.dll)
Syntax
'Declaration
Public Function IssueTicket ( _
rawPartitionId As Guid _
) As String
'Usage
Dim instance As SecureStoreServiceApplication
Dim rawPartitionId As Guid
Dim returnValue As String
returnValue = instance.IssueTicket(rawPartitionId)
public string IssueTicket(
Guid rawPartitionId
)
Parameters
rawPartitionId
Type: System.GuidA GUID that represents the partition ID.
Return Value
Type: System.String
The ticket that is a base64-encoded string.
Implements
ISecureStoreServiceApplication.IssueTicket(Guid)
Remarks
Another user can use this ticket to redeem the credentials of the original caller by calling the RedeemTicket(Guid, String, String) method.
See Also
Reference
SecureStoreServiceApplication Class