9 writes to m_set
mscorlib (9)
system\security\permissions\fileiopermission.cs (9)
1135m_set = new StringExpressionSet( m_ignoreCase, true ); 1143m_set = new StringExpressionSet( m_ignoreCase, true ); 1154m_set = new StringExpressionSet( m_ignoreCase, true ); 1160m_set = new StringExpressionSet( m_ignoreCase, true ); 1166m_set = new StringExpressionSet( m_ignoreCase, value.Substring( m_strAllLocalFiles.Length ), true ); 1172m_set = new StringExpressionSet( m_ignoreCase, value, true ); 1181m_set = new StringExpressionSet( m_ignoreCase, true ); 1189m_set = set; 1198m_set = operand.m_set.Copy();
25 references to m_set
mscorlib (25)
system\security\permissions\fileiopermission.cs (25)
1190m_set.SetThrowOnRelative( true ); 1198m_set = operand.m_set.Copy(); 1208m_set.AddExpressions(values, checkForDuplicates); 1247return !m_allFiles && !m_allLocalFiles && (m_set == null || m_set.IsEmpty()); 1270return new FileIOAccess( this.m_set.Union( operand.m_set ), false, this.m_allLocalFiles || operand.m_allLocalFiles, this.m_pathDiscovery ); 1293return new FileIOAccess( operand.m_set.Copy(), false, operand.m_allLocalFiles, this.m_pathDiscovery ); 1298return new FileIOAccess( this.m_set.Copy(), false, this.m_allLocalFiles, this.m_pathDiscovery ); 1305String[] expressions = operand.m_set.UnsafeToStringArray(); 1322String[] expressions = this.m_set.UnsafeToStringArray(); 1337String[] regularIntersection = this.m_set.Intersect( operand.m_set ).UnsafeToStringArray(); 1362if (!((m_pathDiscovery && this.m_set.IsSubsetOfPathDiscovery( operand.m_set )) || this.m_set.IsSubsetOf( operand.m_set ))) 1366String[] expressions = m_set.UnsafeToStringArray(); 1414String tempStr = m_set.UnsafeToString(); 1423return m_set.UnsafeToString(); 1433return m_set.UnsafeToStringArray(); 1454m_set.IsSubsetOf(operand.m_set) && 1455operand.m_set.IsSubsetOf(m_set)) // Watch Out: This calls StringExpressionSet.IsSubsetOf, unlike below