CommonNameClaimTransform Class
A transform to use for common name (CN) claims.
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.CommonNameClaimTransform
Syntax
[ComVisibleAttribute(true)]
public class CommonNameClaimTransform : TrustPolicyEntryBase
[ComVisibleAttribute(true)]
public ref class CommonNameClaimTransform : TrustPolicyEntryBase
[<ComVisibleAttribute(true)>]
type CommonNameClaimTransform =
class
inherit TrustPolicyEntryBase
end
<ComVisibleAttribute(True)>
Public Class CommonNameClaimTransform
Inherits TrustPolicyEntryBase
Constructors
Name | Description | |
---|---|---|
CommonNameClaimTransform() | Initializes a new instance of the CommonNameClaimTransform class. |
Properties
Name | Description | |
---|---|---|
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.) |
|
PassThroughCommonName | Gets or sets a Boolean that indicates whether the transform should pass the common name claim through without any transformation. |
|
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
A claim set defines the claim language that can be used within a corporation or between two agreeing corporations. When used between two corporations it is the incarnation of a business level agreement to exchange the defined authorization data.
Each external entity that communicates with the Federation Server has an associated claim set. This includes Account Partners, Resource Partners, Account Stores, and Applications. The claim set defines the language that will be used by the Federation Server to communicate with that entity.
The Common Name claim type indicates an arbitrary string used for personalization. Examples include "Ryan D Johnson" or "Microsoft Employee". Only one claim may have the Common Name type. It is important to note that there is no way to guarantee the uniqueness of the Common Name claim and therefore applications need to be very careful when using this claim type in authorization decisions.
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