TrustedRealm Class
The trusted realm which represents a trusted account partner.
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.TrustedRealm
Syntax
[ComVisibleAttribute(true)]
public class TrustedRealm : TrustRealm
[ComVisibleAttribute(true)]
public ref class TrustedRealm : TrustRealm
[<ComVisibleAttribute(true)>]
type TrustedRealm =
class
inherit TrustRealm
end
<ComVisibleAttribute(True)>
Public Class TrustedRealm
Inherits TrustRealm
Constructors
Name | Description | |
---|---|---|
TrustedRealm() | Initializes a new instance of the TrustedRealm class. |
Properties
Name | Description | |
---|---|---|
AllowedTrustedWindowsDomains | Gets or sets the TrustedWindowsDomains that are part of this realm. |
|
ClaimTransformation | Gets or sets the TrustedRealmClaimTransformation for the trusted realm. |
|
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.) |
|
ShadowAccountExistance | Gets or sets the existence of shadow accounts in this realm for the clients from this account partner. |
|
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.) |
|
VerificationMethod | Gets or sets the VerificationMethod used by the Federation Server to verify the tokens from this realm. |
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
This object is populated through the trust policy exchange or directly scripted through the trust policy objects. It is added to the trust policy using the NewTrustedRealm method.
A trusted realm trust policy object has certificate thumbprints that indicate certificates trusted for token signing for the specific trusted account partner. The thumbprint may also indicate the direct issuing certification authority of the certificate used to sign the token. The association of the thumbprints with the trusted account partner is required in order to make sure a certificate for one partner may not be used to sign tokens that appear to be from another partner.
Note
Tokens that contains claims that originate from a trusted realm that is currently inactive will be discarded.
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