IServiceTokenHandler.TryValidateSchedulerToken Method (String, String, ClaimsPrincipal)

 

Validates a string representation of a mobile service authentication token used to authenticate a request targeting a IScheduledJob.

Namespace:   Microsoft.WindowsAzure.Mobile.Service.Security
Assembly:  Microsoft.WindowsAzure.Mobile.Service (in Microsoft.WindowsAzure.Mobile.Service.dll)

bool TryValidateSchedulerToken(
	string token,
	string secretKey,
	out ClaimsPrincipal claimsPrincipal
)

Parameters

token
Type: System.String

A String representation of the authentication token to validate.

secretKey
Type: System.String

The secret key with which the token has been signed.

claimsPrincipal
Type: System.Security.Claims.ClaimsPrincipal

The resulting ClaimsPrincipal if the token is valid; null otherwise.

Return Value

Type: System.Boolean

true if token is valid; otherwise false /

Return to top
Show: