CorporateClaims Class
A collection of group claims and custom claims that have relevance in a particular organization.
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.CorporateClaims
Syntax
[ComVisibleAttribute(true)]
public class CorporateClaims : TrustPolicyEntryBase
[ComVisibleAttribute(true)]
public ref class CorporateClaims : TrustPolicyEntryBase
[<ComVisibleAttribute(true)>]
type CorporateClaims =
class
inherit TrustPolicyEntryBase
end
<ComVisibleAttribute(True)>
Public Class CorporateClaims
Inherits TrustPolicyEntryBase
Constructors
Name | Description | |
---|---|---|
CorporateClaims() | Initializes a new instance of the CorporateClaims class. |
|
CorporateClaims(TrustPolicy) | Initializes a new instance of the CorporateClaims class. |
Properties
Name | Description | |
---|---|---|
CustomClaims | Gets the collection of CustomClaim in the CorporateClaims object. |
|
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.) |
|
GroupClaims | Gets the collection of GroupClaim in the CorporateClaims object. |
|
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.
A corporate claim set contains the following information:
UPN, Role=[Developer, Tester, PM], Custom=[SSN])
A corporate claim set is a claim set associated with the Federation Server itself. All incoming claims are transformed into a corporate claim set, and all internal Federation Server actions are performed on that claim set. With a corporate claim set, transformations need not be individually administered between any two entities which need to communicate; rather, each entity shall define a single transformation to or from the corporate claim set.
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