10 references to IsSubsetOf
mscorlib (10)
system\security\permissions\environmentpermission.cs (2)
229return ((this.m_read == null || this.m_read.IsSubsetOf( operand.m_read )) && 230(this.m_write == null || this.m_write.IsSubsetOf( operand.m_write )));
system\security\permissions\fileiopermission.cs (3)
1362if (!((m_pathDiscovery && this.m_set.IsSubsetOfPathDiscovery( operand.m_set )) || this.m_set.IsSubsetOf( operand.m_set ))) 1454m_set.IsSubsetOf(operand.m_set) && 1455operand.m_set.IsSubsetOf(m_set)) // Watch Out: This calls StringExpressionSet.IsSubsetOf, unlike below
system\security\permissions\registrypermission.cs (5)
261return ((this.m_read == null || this.m_read.IsSubsetOf( operand.m_read )) && 262(this.m_write == null || this.m_write.IsSubsetOf( operand.m_write )) && 263(this.m_create == null || this.m_create.IsSubsetOf( operand.m_create )) && 264(this.m_viewAcl == null || this.m_viewAcl.IsSubsetOf( operand.m_viewAcl )) && 265(this.m_changeAcl == null || this.m_changeAcl.IsSubsetOf( operand.m_changeAcl )));