7 writes to m_changeAcl
mscorlib (7)
system\security\permissions\registrypermission.cs (7)
105m_changeAcl = null; 153m_changeAcl = new StringExpressionSet(); 315intersectPermission.m_changeAcl = intersectChangeAcl; 363unionPermission.m_changeAcl = unionChangeAcl; 397copy.m_changeAcl = this.m_changeAcl.Copy(); 456m_changeAcl = null; 485m_changeAcl = new StringExpressionSet( et );
19 references to m_changeAcl
mscorlib (19)
system\security\permissions\registrypermission.cs (19)
152if (m_changeAcl == null) 154m_changeAcl.AddExpressions( pathList ); 224(this.m_changeAcl == null || this.m_changeAcl.IsEmpty())); 265(this.m_changeAcl == null || this.m_changeAcl.IsSubsetOf( operand.m_changeAcl ))); 298StringExpressionSet intersectChangeAcl = this.m_changeAcl == null ? null : this.m_changeAcl.Intersect( operand.m_changeAcl ); 346StringExpressionSet unionChangeAcl = this.m_changeAcl == null ? operand.m_changeAcl : this.m_changeAcl.Union( operand.m_changeAcl ); 395if (this.m_changeAcl != null) 397copy.m_changeAcl = this.m_changeAcl.Copy(); 428if (this.m_changeAcl != null && !this.m_changeAcl.IsEmpty()) 430esd.AddAttribute( "ChangeAccessControl", SecurityElement.Escape( m_changeAcl.UnsafeToString() ) );