ActiveDirectoryGroupClaim Class
A type of GroupClaim that has an active directory group object associated with it. If the organizational claims in the token contain an ActiveDirectoryGroupClaim object, that security principal is considered a member of the Active Directory group object associated with it.
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.GroupClaim
System.Web.Security.SingleSignOn.ActiveDirectoryGroupClaim
Syntax
[ComVisibleAttribute(true)]
public class ActiveDirectoryGroupClaim : GroupClaim
[ComVisibleAttribute(true)]
public ref class ActiveDirectoryGroupClaim : GroupClaim
[<ComVisibleAttribute(true)>]
type ActiveDirectoryGroupClaim =
class
inherit GroupClaim
end
<ComVisibleAttribute(True)>
Public Class ActiveDirectoryGroupClaim
Inherits GroupClaim
Constructors
Name | Description | |
---|---|---|
ActiveDirectoryGroupClaim() | Creates an instance of the ActiveDirectoryGroupClaim object. |
|
ActiveDirectoryGroupClaim(String, String) | Creates an instance of the ActiveDirectoryGroupClaim object with the specified claimValue and groupSid. |
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.) |
|
Group | Gets or sets the name for the group that this GroupClaim represents.(Inherited from GroupClaim.) |
|
GroupSid | Gets or sets the SID string of the Active Directory Group object associated with this ActiveDirectoryGroupClaim. |
|
IsSensitive | Gets or sets a Boolean to indicate if the contents of this GroupClaim can be audited or not.(Inherited from GroupClaim.) |
|
uuid | Gets or sets the universal unique identifier (UUID) for this TrustPolicyEntryBase object.(Inherited from TrustPolicyEntryBase.) |
Methods
Name | Description | |
---|---|---|
Equals(Object) | Determines whether the specified GroupClaim is equal to the current GroupClaim.(Inherited from GroupClaim.) |
|
Finalize() | (Inherited from Object.) |
|
GetHashCode() | Serves as a hash function for a particular type. GetHashCode is suitable for use in hashing algorithms and data structures like a hash table.(Overrides GroupClaim.GetHashCode().) |
|
GetType() | (Inherited from Object.) |
|
MemberwiseClone() | (Inherited from Object.) |
|
ToString() | Returns a string containing the name of the ActiveDirectoryGroupClaim object, if the object has a name.(Overrides GroupClaim.ToString().) |
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