WebSsoTokenVerifier.GetTokenFromRstr Method (String, String)
This method supports the AD FS infrastructure and is not intended to be used directly from your code. Returns the token parsed out of the RSTR. This method does not actually verify the token.
Namespace: System.Web.Security.SingleSignOn
Assembly: System.Web.Security.SingleSignOn (in System.Web.Security.SingleSignOn.dll)
Syntax
public void GetTokenFromRstr(
string rstr,
out string token
)
public:
virtual void GetTokenFromRstr(
String^ rstr,
[OutAttribute] String^% token
) sealed
abstract GetTokenFromRstr :
rstr:string *
token:string byref -> unit
override GetTokenFromRstr :
rstr:string *
token:string byref -> unit
Public 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.
Implements
IWebSsoTokenVerifier.GetTokenFromRstr(String, String)
See Also
WebSsoTokenVerifier Class
System.Web.Security.SingleSignOn Namespace
Return to top