Esempio n. 1
0
 /// <summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.CryptoKeyAuditRule" /> class using the specified values. </summary>
 /// <param name="identity">The identity to which the audit rule applies.</param>
 /// <param name="cryptoKeyRights">The cryptographic key operation for which this audit rule generates audits.</param>
 /// <param name="flags">The conditions that generate audits.</param>
 // Token: 0x06001F00 RID: 7936 RVA: 0x0006D155 File Offset: 0x0006B355
 public CryptoKeyAuditRule(string identity, CryptoKeyRights cryptoKeyRights, AuditFlags flags) : this(new NTAccount(identity), CryptoKeyAuditRule.AccessMaskFromRights(cryptoKeyRights), false, InheritanceFlags.None, PropagationFlags.None, flags)
 {
 }
Esempio n. 2
0
 /// <summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.CryptoKeyAuditRule" /> class using the specified values. </summary>
 /// <param name="identity">The identity to which the audit rule applies. This parameter must be an object that can be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" />.</param>
 /// <param name="cryptoKeyRights">The cryptographic key operation for which this audit rule generates audits.</param>
 /// <param name="flags">The conditions that generate audits.</param>
 // Token: 0x06001EFF RID: 7935 RVA: 0x0006D142 File Offset: 0x0006B342
 public CryptoKeyAuditRule(IdentityReference identity, CryptoKeyRights cryptoKeyRights, AuditFlags flags) : this(identity, CryptoKeyAuditRule.AccessMaskFromRights(cryptoKeyRights), false, InheritanceFlags.None, PropagationFlags.None, flags)
 {
 }