6 references to Union
mscorlib (6)
system\security\permissions\fileiopermission.cs (6)
729
FileIOAccess unionRead = this.m_read == null ? operand.m_read : this.m_read.
Union
(operand.m_read);
730
FileIOAccess unionWrite = this.m_write == null ? operand.m_write : this.m_write.
Union
(operand.m_write);
731
FileIOAccess unionAppend = this.m_append == null ? operand.m_append : this.m_append.
Union
(operand.m_append);
732
FileIOAccess unionPathDiscovery = this.m_pathDiscovery == null ? operand.m_pathDiscovery : this.m_pathDiscovery.
Union
(operand.m_pathDiscovery);
733
FileIOAccess unionViewAcl = this.m_viewAcl == null ? operand.m_viewAcl : this.m_viewAcl.
Union
(operand.m_viewAcl);
734
FileIOAccess unionChangeAcl = this.m_changeAcl == null ? operand.m_changeAcl : this.m_changeAcl.
Union
(operand.m_changeAcl);