13 instantiations of DiscretionaryAcl
mscorlib (9)
system\security\accesscontrol\acl.cs (1)
3282DiscretionaryAcl dcl = new DiscretionaryAcl( isContainer, isDS, 1 );
system\security\accesscontrol\commonobjectsecurity.cs (1)
236_securityDescriptor.DiscretionaryAcl = new DiscretionaryAcl( IsContainer, IsDS, GenericAcl.AclRevision, 1 );
system\security\accesscontrol\directoryobjectsecurity.cs (2)
266_securityDescriptor.DiscretionaryAcl = new DiscretionaryAcl(IsContainer, IsDS, GenericAcl.AclRevisionDS, 1); 284_securityDescriptor.DiscretionaryAcl = new DiscretionaryAcl(IsContainer, IsDS, new RawAcl(binaryForm, 0));
system\security\accesscontrol\objectsecurity.cs (2)
78DiscretionaryAcl dacl = new DiscretionaryAcl(isContainer, isDS, 5); 134_securityDescriptor.DiscretionaryAcl = new DiscretionaryAcl( IsContainer, IsDS, newOne.DiscretionaryAcl, true );
system\security\accesscontrol\securitydescriptor.cs (3)
945: this( isContainer, isDS, flags, owner, group, systemAcl == null ? null : new SystemAcl( isContainer, isDS, systemAcl ), discretionaryAcl == null ? null : new DiscretionaryAcl( isContainer, isDS, discretionaryAcl )) 969rawSecurityDescriptor.DiscretionaryAcl == null ? null : new DiscretionaryAcl( isContainer, isDS, rawSecurityDescriptor.DiscretionaryAcl, trusted )); 1245this.DiscretionaryAcl = new DiscretionaryAcl(this.IsContainer, this.IsDS, revision, trusted);
System.Runtime.Remoting (1)
channels\ipc\ipcport.cs (1)
54DiscretionaryAcl dacl = new DiscretionaryAcl(false, false, 1);
System.ServiceModel (2)
System\ServiceModel\Channels\PipeConnection.cs (1)
2423DiscretionaryAcl dacl = new DiscretionaryAcl(false, false, capacity);
System\ServiceModel\ComIntegration\ComPlusAuthorization.cs (1)
258DiscretionaryAcl dacl = new DiscretionaryAcl(true, false, acl);
WsatUI (1)
MMCUI\WsatSecurityModel.cs (1)
131DiscretionaryAcl dacl = new DiscretionaryAcl(false, false, rawDacl);
23 references to DiscretionaryAcl
mscorlib (15)
system\security\accesscontrol\acl.cs (5)
859Canonicalize( false, this is DiscretionaryAcl ); 2050if ( false == InspectAce( ref newAce, ( this is DiscretionaryAcl ))) 2131if ( false == InspectAce( ref newAce, ( this is DiscretionaryAcl ))) 3280static internal DiscretionaryAcl CreateAllowEveryoneFullAccess(bool isDS, bool isContainer) 3282DiscretionaryAcl dcl = new DiscretionaryAcl( isContainer, isDS, 1 );
system\security\accesscontrol\nativeobjectsecurity.cs (1)
195DiscretionaryAcl dacl = null;
system\security\accesscontrol\objectsecurity.cs (1)
78DiscretionaryAcl dacl = new DiscretionaryAcl(isContainer, isDS, 5);
system\security\accesscontrol\securitydescriptor.cs (8)
124return (GenericDacl is DiscretionaryAcl) && (GenericDacl as DiscretionaryAcl).EveryOneFullAccessForNullDacl; 839private DiscretionaryAcl _dacl; 846private void CreateFromParts( bool isContainer, bool isDS, ControlFlags flags, SecurityIdentifier owner, SecurityIdentifier group, SystemAcl systemAcl, DiscretionaryAcl discretionaryAcl ) 904discretionaryAcl = DiscretionaryAcl.CreateAllowEveryoneFullAccess(_isDS, _isContainer); 939public CommonSecurityDescriptor( bool isContainer, bool isDS, ControlFlags flags, SecurityIdentifier owner, SecurityIdentifier group, SystemAcl systemAcl, DiscretionaryAcl discretionaryAcl ) 1115public DiscretionaryAcl DiscretionaryAcl 1151_dacl = DiscretionaryAcl.CreateAllowEveryoneFullAccess(IsDS, IsContainer);
System.Runtime.Remoting (1)
channels\ipc\ipcport.cs (1)
54DiscretionaryAcl dacl = new DiscretionaryAcl(false, false, 1);
System.ServiceModel (4)
System\ServiceModel\Activation\Utility.cs (2)
259DiscretionaryAcl dacl = securityDescriptor.DiscretionaryAcl; 284static void EditDacl(DiscretionaryAcl dacl, SecurityIdentifier account, int right, bool add)
System\ServiceModel\Channels\PipeConnection.cs (1)
2423DiscretionaryAcl dacl = new DiscretionaryAcl(false, false, capacity);
System\ServiceModel\ComIntegration\ComPlusAuthorization.cs (1)
258DiscretionaryAcl dacl = new DiscretionaryAcl(true, false, acl);
WsatConfig (1)
Configuration\ClusterRegistryConfigurationProvider.cs (1)
324DiscretionaryAcl dacl = securityDescriptor.DiscretionaryAcl;
WsatUI (2)
Configuration\ClusterRegistryConfigurationProvider.cs (1)
324DiscretionaryAcl dacl = securityDescriptor.DiscretionaryAcl;
MMCUI\WsatSecurityModel.cs (1)
131DiscretionaryAcl dacl = new DiscretionaryAcl(false, false, rawDacl);