IServiceTokenHandler.CreateTokenInfo Method

Definition

Creates a TokenInfo containing a security token to be used as part of the Mobile Service authentication process.

public Microsoft.WindowsAzure.Mobile.Service.Security.TokenInfo CreateTokenInfo (System.Security.Claims.ClaimsIdentity claimsIdentity, Microsoft.WindowsAzure.Mobile.Service.Security.ProviderCredentials providerCredentials, TimeSpan lifetime, string secretKey);
abstract member CreateTokenInfo : System.Security.Claims.ClaimsIdentity * Microsoft.WindowsAzure.Mobile.Service.Security.ProviderCredentials * TimeSpan * string -> Microsoft.WindowsAzure.Mobile.Service.Security.TokenInfo
Public Function CreateTokenInfo (claimsIdentity As ClaimsIdentity, providerCredentials As ProviderCredentials, lifetime As TimeSpan, secretKey As String) As TokenInfo

Parameters

claimsIdentity
ClaimsIdentity

The set of claims to include in the token.

providerCredentials
ProviderCredentials

The ProviderCredentials to include as part of the token.

lifetime
TimeSpan

A TimeSpan indicating how long the token is valid for.

secretKey
String

The secret key to sign the token with.

Returns

A TokenInfo containing a security token.

Applies to