8 references to IsSubsetOf
mscorlib (8)
system\security\permissions\fileiopermission.cs (8)
650
return ((this.m_read == null || this.m_read.
IsSubsetOf
(operand.m_read)) &&
651
(this.m_write == null || this.m_write.
IsSubsetOf
(operand.m_write)) &&
652
(this.m_append == null || this.m_append.
IsSubsetOf
(operand.m_append)) &&
653
(this.m_pathDiscovery == null || this.m_pathDiscovery.
IsSubsetOf
(operand.m_pathDiscovery)) &&
654
(this.m_viewAcl == null || this.m_viewAcl.
IsSubsetOf
(operand.m_viewAcl)) &&
655
(this.m_changeAcl == null || this.m_changeAcl.
IsSubsetOf
(operand.m_changeAcl)));
1461
if(!this.
IsSubsetOf
(operand)) // Watch Out: This calls FileIOAccess.IsSubsetOf, unlike above
1463
if(!operand.
IsSubsetOf
(this))