System.Security.AccessControl.CryptoKeyAccessRule.CryptoKeyAccessRule C# (CSharp) Method

CryptoKeyAccessRule() public method

public CryptoKeyAccessRule ( IdentityReference identity, CryptoKeyRights cryptoKeyRights, AccessControlType type ) : System.Security.Principal
identity System.Security.Principal.IdentityReference
cryptoKeyRights CryptoKeyRights
type AccessControlType
return System.Security.Principal
		public CryptoKeyAccessRule (IdentityReference identity,
					    CryptoKeyRights cryptoKeyRights,
					    AccessControlType type)
			// FIXME: accessMask=0 likely causes an error
			: base (identity, 0, false, InheritanceFlags.None, PropagationFlags.None, AccessControlType.Allow)
		{
			this.rights = cryptoKeyRights;
		}

Same methods

CryptoKeyAccessRule::CryptoKeyAccessRule ( string identity, CryptoKeyRights cryptoKeyRights, AccessControlType type ) : System.Security.Principal
CryptoKeyAccessRule