Claim.CreateDenyOnlyWindowsSidClaim(SecurityIdentifier) Method

Definition

Creates a Claim object that represents a deny-only specified security identifier (SID).

public:
 static System::IdentityModel::Claims::Claim ^ CreateDenyOnlyWindowsSidClaim(System::Security::Principal::SecurityIdentifier ^ sid);
public static System.IdentityModel.Claims.Claim CreateDenyOnlyWindowsSidClaim (System.Security.Principal.SecurityIdentifier sid);
static member CreateDenyOnlyWindowsSidClaim : System.Security.Principal.SecurityIdentifier -> System.IdentityModel.Claims.Claim
Public Shared Function CreateDenyOnlyWindowsSidClaim (sid As SecurityIdentifier) As Claim

Parameters

sid
SecurityIdentifier

A SecurityIdentifier that represents the deny-only SID.

Returns

A Claim that represents the SID specified in the sid parameter.

Exceptions

sid is null.

Remarks

The deny-only SID is a SID_AND_ATTRIBUTES structure with the SE_GROUP_USE_FOR_DENY_ONLY flag set.

The Claim object this method creates has the property values shown in the following table.

Property Value
ClaimType DenyOnlySid
Resource The value of the sid parameter.
Right PossessProperty.

Applies to