7 writes to m_read
mscorlib (7)
system\security\permissions\environmentpermission.cs (7)
104m_read = null; 120m_read = new EnvironmentStringExpressionSet(); 278intersectPermission.m_read = intersectRead; 317unionPermission.m_read = unionRead; 335copy.m_read = this.m_read.Copy(); 381m_read = null; 387m_read = new EnvironmentStringExpressionSet( et );
21 references to m_read
mscorlib (21)
system\security\permissions\environmentpermission.cs (21)
119if (m_read == null) 121m_read.AddExpressions( pathList ); 140if (m_read == null) 144return m_read.ToString(); 192(this.m_read == null || this.m_read.IsEmpty()) && 229return ((this.m_read == null || this.m_read.IsSubsetOf( operand.m_read )) && 267StringExpressionSet intersectRead = this.m_read == null ? null : this.m_read.Intersect( operand.m_read ); 306StringExpressionSet unionRead = this.m_read == null ? operand.m_read : this.m_read.Union( operand.m_read ); 333if (this.m_read != null) 335copy.m_read = this.m_read.Copy(); 352if (this.m_read != null && !this.m_read.IsEmpty()) 354esd.AddAttribute( "Read", SecurityElement.Escape( m_read.ToString() ) );