IWebSsoTokenVerifier.GetTokenFromRstr Method (String, String)
Returns the token parsed out of the RSTR. This method does not verify the token.
Namespace: System.Web.Security.SingleSignOn
Assembly: System.Web.Security.SingleSignOn (in System.Web.Security.SingleSignOn.dll)
Syntax
void GetTokenFromRstr(
string rstr,
out string token
)
void GetTokenFromRstr(
String^ rstr,
[OutAttribute] String^% token
)
abstract GetTokenFromRstr :
rstr:string *
token:string byref -> unit
Sub GetTokenFromRstr (
rstr As String,
<OutAttribute> ByRef token As String
)
Parameters
rstr
Type: System.StringThe RSTR that returns the token.
token
Type: System.StringThe token to return.
Remarks
To verify the token, call VerifyToken.
See Also
IWebSsoTokenVerifier Interface
System.Web.Security.SingleSignOn Namespace
Return to top