ISecureStoreServiceApplication.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
<FaultContractAttribute(GetType(SecureStoreServiceFault))> _
<OperationContractAttribute> _
Function IssueTicket ( _
rawPartitionId As Guid _
) As String
'Usage
Dim instance As ISecureStoreServiceApplication
Dim rawPartitionId As Guid
Dim returnValue As String
returnValue = instance.IssueTicket(rawPartitionId)
[FaultContractAttribute(typeof(SecureStoreServiceFault))]
[OperationContractAttribute]
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.
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
ISecureStoreServiceApplication Interface