FederationServerSoapProxy.RequestSecurityTokenWithToken Method (Byte[], Byte[], 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 asynchronously request a security token based on a token 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/RequestSecurityTokenWithToken",
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 RequestSecurityTokenWithToken(
byte[] inToken,
byte[] cookie,
string targetRealmName,
out RSTRResult rstr
)
public:
[SoapDocumentMethodAttribute("https://schemas.microsoft.com/ActiveDirectory/FederationService/2005/07/RequestSecurityTokenWithToken",
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 RequestSecurityTokenWithToken(
array<unsigned char>^ inToken,
array<unsigned char>^ cookie,
String^ targetRealmName,
[OutAttribute] RSTRResult^% rstr
) sealed
[<SoapDocumentMethodAttribute("https://schemas.microsoft.com/ActiveDirectory/FederationService/2005/07/RequestSecurityTokenWithToken",
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 RequestSecurityTokenWithToken :
inToken:byte[] *
cookie:byte[] *
targetRealmName:string *
rstr:RSTRResult byref -> unit
[<SoapDocumentMethodAttribute("https://schemas.microsoft.com/ActiveDirectory/FederationService/2005/07/RequestSecurityTokenWithToken",
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 RequestSecurityTokenWithToken :
inToken:byte[] *
cookie:byte[] *
targetRealmName:string *
rstr:RSTRResult byref -> unit
<SoapDocumentMethodAttribute("https://schemas.microsoft.com/ActiveDirectory/FederationService/2005/07/RequestSecurityTokenWithToken",
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 RequestSecurityTokenWithToken (
inToken As Byte(),
cookie As Byte(),
targetRealmName As String,
<OutAttribute> ByRef rstr As RSTRResult
)
Parameters
inToken
Type: System.Byte[]A security token.
cookie
Type: System.Byte[]The cookie obtained from the client.
targetRealmName
Type: System.StringThe name of the target realm for which the security token is being requested.
rstr
Type: System.Web.Security.SingleSignOn.RSTRResultThe result of processing the request.
Implements
IFederationServer.RequestSecurityTokenWithToken(Byte[], Byte[], String, RSTRResult)
See Also
FederationServerSoapProxy Class
System.Web.Security.SingleSignOn Namespace
Return to top