27 instantiations of FileIOAccess
mscorlib (27)
system\security\permissions\fileiopermission.cs (27)
245m_read = new FileIOAccess(); 254m_write = new FileIOAccess(); 263m_append = new FileIOAccess(); 272m_pathDiscovery = new FileIOAccess(true); 282m_viewAcl = new FileIOAccess(); 291m_changeAcl = new FileIOAccess(); 383m_read = new FileIOAccess(); 396m_write = new FileIOAccess(); 409m_append = new FileIOAccess(); 422m_pathDiscovery = new FileIOAccess(true); 478m_read = new FileIOAccess(); 491m_write = new FileIOAccess(); 504m_append = new FileIOAccess(); 517m_pathDiscovery = new FileIOAccess(true); 853m_read = new FileIOAccess(et); 863m_write = new FileIOAccess(et); 873m_append = new FileIOAccess(et); 883m_pathDiscovery = new FileIOAccess(et); 894m_viewAcl = new FileIOAccess(et); 904m_changeAcl = new FileIOAccess(et); 1252return new FileIOAccess( this ); 1267return new FileIOAccess( true, false, this.m_pathDiscovery ); 1270return new FileIOAccess( this.m_set.Union( operand.m_set ), false, this.m_allLocalFiles || operand.m_allLocalFiles, this.m_pathDiscovery ); 1289return new FileIOAccess( true, false, 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 ); 1342return new FileIOAccess( intersectionSet, false, this.m_allLocalFiles && operand.m_allLocalFiles, this.m_pathDiscovery );
27 references to FileIOAccess
mscorlib (27)
system\security\permissions\fileiopermission.cs (27)
44private FileIOAccess m_read; 45private FileIOAccess m_write; 46private FileIOAccess m_append; 47private FileIOAccess m_pathDiscovery; 49private FileIOAccess m_viewAcl; 51private FileIOAccess m_changeAcl; 681FileIOAccess intersectRead = this.m_read == null ? null : this.m_read.Intersect(operand.m_read); 682FileIOAccess intersectWrite = this.m_write == null ? null : this.m_write.Intersect(operand.m_write); 683FileIOAccess intersectAppend = this.m_append == null ? null : this.m_append.Intersect(operand.m_append); 684FileIOAccess intersectPathDiscovery = this.m_pathDiscovery == null ? null : this.m_pathDiscovery.Intersect(operand.m_pathDiscovery); 685FileIOAccess intersectViewAcl = this.m_viewAcl == null ? null : this.m_viewAcl.Intersect(operand.m_viewAcl); 686FileIOAccess intersectChangeAcl = this.m_changeAcl == null ? null : this.m_changeAcl.Intersect(operand.m_changeAcl); 729FileIOAccess unionRead = this.m_read == null ? operand.m_read : this.m_read.Union(operand.m_read); 730FileIOAccess unionWrite = this.m_write == null ? operand.m_write : this.m_write.Union(operand.m_write); 731FileIOAccess unionAppend = this.m_append == null ? operand.m_append : this.m_append.Union(operand.m_append); 732FileIOAccess unionPathDiscovery = this.m_pathDiscovery == null ? operand.m_pathDiscovery : this.m_pathDiscovery.Union(operand.m_pathDiscovery); 733FileIOAccess unionViewAcl = this.m_viewAcl == null ? operand.m_viewAcl : this.m_viewAcl.Union(operand.m_viewAcl); 734FileIOAccess unionChangeAcl = this.m_changeAcl == null ? operand.m_changeAcl : this.m_changeAcl.Union(operand.m_changeAcl); 1196private FileIOAccess( FileIOAccess operand ) 1250public FileIOAccess Copy() 1256public FileIOAccess Union( FileIOAccess operand ) 1276public FileIOAccess Intersect( FileIOAccess operand ) 1348public bool IsSubsetOf( FileIOAccess operand ) 1445FileIOAccess operand = obj as FileIOAccess;