8 references to Union
mscorlib (8)
system\security\permissions\environmentpermission.cs (2)
306
StringExpressionSet unionRead = this.m_read == null ? operand.m_read : this.m_read.
Union
( operand.m_read );
307
StringExpressionSet unionWrite = this.m_write == null ? operand.m_write : this.m_write.
Union
( operand.m_write );
system\security\permissions\fileiopermission.cs (1)
1270
return new FileIOAccess( this.m_set.
Union
( operand.m_set ), false, this.m_allLocalFiles || operand.m_allLocalFiles, this.m_pathDiscovery );
system\security\permissions\registrypermission.cs (5)
342
StringExpressionSet unionRead = this.m_read == null ? operand.m_read : this.m_read.
Union
( operand.m_read );
343
StringExpressionSet unionWrite = this.m_write == null ? operand.m_write : this.m_write.
Union
( operand.m_write );
344
StringExpressionSet unionCreate = this.m_create == null ? operand.m_create : this.m_create.
Union
( operand.m_create );
345
StringExpressionSet unionViewAcl = this.m_viewAcl == null ? operand.m_viewAcl : this.m_viewAcl.
Union
( operand.m_viewAcl );
346
StringExpressionSet unionChangeAcl = this.m_changeAcl == null ? operand.m_changeAcl : this.m_changeAcl.
Union
( operand.m_changeAcl );