FederationServerSoapProxy.GetFsTrustInformation Method (VersionInformation, VersionInformation, FsInformationData)

 

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 AD FS Web Agent to retrieve the trust information of the Federation Service.

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/GetFsTrustInformation", 
    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 bool GetFsTrustInformation(
    VersionInformation wsVersion,
    out VersionInformation fsVersion,
    out FsInformationData trustInfo
)
public:
[SoapDocumentMethodAttribute("https://schemas.microsoft.com/ActiveDirectory/FederationService/2005/07/GetFsTrustInformation", 
    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 bool GetFsTrustInformation(
    VersionInformation^ wsVersion,
    [OutAttribute] VersionInformation^% fsVersion,
    [OutAttribute] FsInformationData^% trustInfo
) sealed
[<SoapDocumentMethodAttribute("https://schemas.microsoft.com/ActiveDirectory/FederationService/2005/07/GetFsTrustInformation",
    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 GetFsTrustInformation : 
        wsVersion:VersionInformation *
        fsVersion:VersionInformation byref *
        trustInfo:FsInformationData byref -> bool
[<SoapDocumentMethodAttribute("https://schemas.microsoft.com/ActiveDirectory/FederationService/2005/07/GetFsTrustInformation",
    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 GetFsTrustInformation : 
        wsVersion:VersionInformation *
        fsVersion:VersionInformation byref *
        trustInfo:FsInformationData byref -> bool
<SoapDocumentMethodAttribute("https://schemas.microsoft.com/ActiveDirectory/FederationService/2005/07/GetFsTrustInformation",
    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 Function GetFsTrustInformation (
    wsVersion As VersionInformation,
    <OutAttribute> ByRef fsVersion As VersionInformation,
    <OutAttribute> ByRef trustInfo As FsInformationData
) As Boolean

Parameters

Return Value

Type: System.Boolean

true if the call succeeded; otherwise, false.

Implements

IFederationServer.GetFsTrustInformation(VersionInformation, VersionInformation, FsInformationData)

See Also

FederationServerSoapProxy Class
System.Web.Security.SingleSignOn Namespace

Return to top