System.Security.Principal.IdentityReference.Translate C# (CSharp) Method

Translate() public abstract method

public abstract Translate ( Type targetType ) : IdentityReference
targetType Type
return IdentityReference
		public abstract IdentityReference Translate (Type targetType);

Usage Example

Beispiel #1
0
		public RegistryAccessRule (IdentityReference identity,
					   RegistryRights registryRights,
					   InheritanceFlags inheritanceFlags,
					   PropagationFlags propagationFlags,
					   AccessControlType type)
			// FIXME: accessMask=0 likely causes an error
			: base (identity.Translate(typeof(SecurityIdentifier)), 0, false, inheritanceFlags, propagationFlags, type)
		{
			this.rights = registryRights;
		}
All Usage Examples Of System.Security.Principal.IdentityReference::Translate