TrustingApplication Class
Gets or sets a TrustingRealmClaimTransformation to use for transforming claims for this trusting application.
Namespace: System.Web.Security.SingleSignOn
Assembly: System.Web.Security.SingleSignOn (in System.Web.Security.SingleSignOn.dll)
Inheritance Hierarchy
System.Object
System.Web.Security.SingleSignOn.TrustPolicyEntryBase
System.Web.Security.SingleSignOn.TrustPolicyEntry
System.Web.Security.SingleSignOn.TrustRealm
System.Web.Security.SingleSignOn.TrustingRealm
System.Web.Security.SingleSignOn.TrustingApplication
Syntax
[ComVisibleAttribute(true)]
public class TrustingApplication : TrustingRealm
[ComVisibleAttribute(true)]
public ref class TrustingApplication : TrustingRealm
[<ComVisibleAttribute(true)>]
type TrustingApplication =
class
inherit TrustingRealm
end
<ComVisibleAttribute(True)>
Public Class TrustingApplication
Inherits TrustingRealm
Constructors
Name | Description | |
---|---|---|
TrustingApplication() | Initializes a new instance of the TrustingApplication class. |
Properties
Name | Description | |
---|---|---|
AcceptableAuthenticationMethodStrings | Gets or sets a TrustPolicyStringCollection object that contains the authentication methods used by a client, when it authenticates its account authority to access the corresponding TrustingApplication. |
|
ClaimTransformation | Gets or sets the TrustingRealmClaimTransformation.(Inherited from TrustingRealm.) |
|
Disabled | Gets or sets whether the trust with this realm is currently active. If this is set, no tokens will be accepted from this partner.(Inherited from TrustPolicyEntryBase.) |
|
Initialized | Gets or sets if the TrustRealm is initialized.(Inherited from TrustRealm.) |
|
IsWindowsRealm | Gets or sets whether this partner is in a forest which is trusted by the forest to which this Federation Server is joined to.(Inherited from TrustRealm.) |
|
Namespaces | Gets or sets the Namespaces, if the partner is using custom namespaces for policy, addressing and claims.(Inherited from TrustRealm.) |
|
SigningMethod | Gets or sets KerberosSigningMethod as the signing method that is used by the Federation Server when signing tokens.(Inherited from TrustingRealm.) |
|
TokenLifetimeInMinutes | Gets or sets the lifetime of the token on the trusting realm, in minutes.(Inherited from TrustingRealm.) |
|
TrustEntryDisplayName | Gets or sets the display name for this TrustPolicyEntry.(Inherited from TrustPolicyEntry.) |
|
TrustLsUrl | Gets or sets the Federation Service End point URL for the trust partner.(Inherited from TrustRealm.) |
|
TrustPolicyEntryUri | Gets or sets the Uri for this TrustPolicyEntry.(Inherited from TrustPolicyEntry.) |
|
uuid | Gets or sets the universal unique identifier (UUID) for this TrustPolicyEntryBase object.(Inherited from TrustPolicyEntryBase.) |
Methods
Name | Description | |
---|---|---|
Equals(Object) | (Inherited from Object.) |
|
Finalize() | (Inherited from Object.) |
|
GetHashCode() | (Inherited from Object.) |
|
GetType() | (Inherited from Object.) |
|
MemberwiseClone() | (Inherited from Object.) |
|
ToString() | (Inherited from Object.) |
Remarks
As part of Federated Document Collaboration (FDC), SharePoint clients can share Office documents across a federation using SharePoint as the resource application. This type of scenario will use NT impersonation tokens for authentication.
If the WebSSO cookie expires and the client has a document open in an Office application for edit, then when the client attempts to save the file the operation will fail. The solution to this problem is to set the token lifetime directly on the application. The token lifetime is configurable for each trusting application through the TokenLifetimeInMinutes property. This lifetime applies to the SAML token issued by the resource federation server. Because the SAML token is also used as the Web server authorization cookie, the same lifetime applies to the cookie.
Thread Safety
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
See Also
System.Web.Security.SingleSignOn Namespace
Return to top