7 writes to m_read
mscorlib (7)
system\security\permissions\registrypermission.cs (7)
85m_read = null; 124m_read = new StringExpressionSet(); 311intersectPermission.m_read = intersectRead; 359unionPermission.m_read = unionRead; 381copy.m_read = this.m_read.Copy(); 452m_read = null; 461m_read = new StringExpressionSet( et );
21 references to m_read
mscorlib (21)
system\security\permissions\registrypermission.cs (21)
123if (m_read == null) 125m_read.AddExpressions( pathList ); 168if (m_read == null) 172return m_read.UnsafeToString(); 220(this.m_read == null || this.m_read.IsEmpty()) && 261return ((this.m_read == null || this.m_read.IsSubsetOf( operand.m_read )) && 294StringExpressionSet intersectRead = this.m_read == null ? null : this.m_read.Intersect( operand.m_read ); 342StringExpressionSet unionRead = this.m_read == null ? operand.m_read : this.m_read.Union( operand.m_read ); 379if (this.m_read != null) 381copy.m_read = this.m_read.Copy(); 412if (this.m_read != null && !this.m_read.IsEmpty()) 414esd.AddAttribute( "Read", SecurityElement.Escape( m_read.UnsafeToString() ) );