FederationServerSoapProxy.LsRequestSecurityTokenWithCookie Method (Byte[], String, String[], RSTRResult)
This API supports the product infrastructure and is not intended to be used directly from your code.
This method supports the AD FS infrastructure and is not meant to be used directly from your code. This web method is called by the FS proxy to request a security token based on a cookie issued previously.
Namespace: System.Web.Security.SingleSignOn
Assembly: System.Web.Security.SingleSignOn (in System.Web.Security.SingleSignOn.dll)
Syntax
[SoapDocumentMethodAttribute("https://schemas.microsoft.com/ActiveDirectory/FederationService/2005/07/LsRequestSecurityTokenWithCookie",
RequestNamespace = "https://schemas.microsoft.com/ActiveDirectory/FederationService/2005/07/",
ResponseNamespace = "https://schemas.microsoft.com/ActiveDirectory/FederationService/2005/07/",
Use = SoapBindingUse.Literal, ParameterStyle = SoapParameterStyle.Wrapped)]
public void LsRequestSecurityTokenWithCookie(
byte[] latToken,
string targetRealmName,
string[] authMethodUris,
out RSTRResult rstr
)
public:
[SoapDocumentMethodAttribute("https://schemas.microsoft.com/ActiveDirectory/FederationService/2005/07/LsRequestSecurityTokenWithCookie",
RequestNamespace = "https://schemas.microsoft.com/ActiveDirectory/FederationService/2005/07/",
ResponseNamespace = "https://schemas.microsoft.com/ActiveDirectory/FederationService/2005/07/",
Use = SoapBindingUse::Literal, ParameterStyle = SoapParameterStyle::Wrapped)]
virtual void LsRequestSecurityTokenWithCookie(
array<unsigned char>^ latToken,
String^ targetRealmName,
array<String^>^ authMethodUris,
[OutAttribute] RSTRResult^% rstr
) sealed
[<SoapDocumentMethodAttribute("https://schemas.microsoft.com/ActiveDirectory/FederationService/2005/07/LsRequestSecurityTokenWithCookie",
RequestNamespace = "https://schemas.microsoft.com/ActiveDirectory/FederationService/2005/07/",
ResponseNamespace = "https://schemas.microsoft.com/ActiveDirectory/FederationService/2005/07/",
Use = SoapBindingUse.Literal, ParameterStyle = SoapParameterStyle.Wrapped)>]
abstract LsRequestSecurityTokenWithCookie :
latToken:byte[] *
targetRealmName:string *
authMethodUris:string[] *
rstr:RSTRResult byref -> unit
[<SoapDocumentMethodAttribute("https://schemas.microsoft.com/ActiveDirectory/FederationService/2005/07/LsRequestSecurityTokenWithCookie",
RequestNamespace = "https://schemas.microsoft.com/ActiveDirectory/FederationService/2005/07/",
ResponseNamespace = "https://schemas.microsoft.com/ActiveDirectory/FederationService/2005/07/",
Use = SoapBindingUse.Literal, ParameterStyle = SoapParameterStyle.Wrapped)>]
override LsRequestSecurityTokenWithCookie :
latToken:byte[] *
targetRealmName:string *
authMethodUris:string[] *
rstr:RSTRResult byref -> unit
<SoapDocumentMethodAttribute("https://schemas.microsoft.com/ActiveDirectory/FederationService/2005/07/LsRequestSecurityTokenWithCookie",
RequestNamespace := "https://schemas.microsoft.com/ActiveDirectory/FederationService/2005/07/",
ResponseNamespace := "https://schemas.microsoft.com/ActiveDirectory/FederationService/2005/07/",
Use := SoapBindingUse.Literal, ParameterStyle := SoapParameterStyle.Wrapped)>
Public Sub LsRequestSecurityTokenWithCookie (
latToken As Byte(),
targetRealmName As String,
authMethodUris As String(),
<OutAttribute> ByRef rstr As RSTRResult
)
Parameters
latToken
Type: System.Byte[]The cookie token issued from a previous client authentication.
targetRealmName
Type: System.StringThe name of the target realm for which the security token is being requested. This may be either a federation partner or a resource web server.
authMethodUris
Type: System.String[]The URI identifying the auth method requested by the resource realm for authentication. If the signin request message did not contain the wauth query string parameter then this parameter should be null.
rstr
Type: System.Web.Security.SingleSignOn.RSTRResultReturns the result of processing the request.
Implements
IFederationServer.LsRequestSecurityTokenWithCookie(Byte[], String, String[], RSTRResult)
See Also
FederationServerSoapProxy Class
System.Web.Security.SingleSignOn Namespace
Return to top