7 writes to m_sites
mscorlib (7)
system\security\permissions\siteidentitypermission.cs (7)
58m_sites = new SiteString[1]; 126m_sites = new SiteString[1]; 165perm.m_sites = new SiteString[this.m_sites.Length]; 247result.m_sites = alSites.ToArray(); 294result.m_sites = alSites.ToArray(); 302m_sites = null; 325m_sites = al.ToArray();
40 references to m_sites
mscorlib (40)
system\security\permissions\siteidentitypermission.cs (40)
59m_sites[0] = m_site; 71if (m_sites != null && m_sites.Length == 1) // for the v1.x case 72m_site = m_sites[0]; 127m_sites[0] = new SiteString( value ); 132if(m_sites == null) 134if(m_sites.Length == 1) 135return m_sites[0].ToString(); 163if (this.m_sites != null) 165perm.m_sites = new SiteString[this.m_sites.Length]; 167for(n = 0; n < this.m_sites.Length; n++) 168perm.m_sites[n] = (SiteString)this.m_sites[n].Copy(); 179if(m_sites == null) 181if(m_sites.Length == 0) 192if(this.m_sites != null) 194foreach(SiteString ssThis in this.m_sites) 197if(that.m_sites != null) 199foreach(SiteString ssThat in that.m_sites) 232if(this.m_sites == null || that.m_sites == null || this.m_sites.Length == 0 || that.m_sites.Length == 0) 235foreach(SiteString ssThis in this.m_sites) 237foreach(SiteString ssThat in that.m_sites) 255if((this.m_sites == null || this.m_sites.Length == 0) && !this.m_unrestricted) 268if (this.m_sites == null || this.m_sites.Length == 0) 270if(that.m_sites == null || that.m_sites.Length == 0) 274if(that.m_sites == null || that.m_sites.Length == 0) 277foreach(SiteString ssThis in this.m_sites) 279foreach(SiteString ssThat in that.m_sites) 333else if (m_sites != null) 335if (m_sites.Length == 1) 336esd.AddAttribute( "Site", m_sites[0].ToString() ); 340for(n = 0; n < m_sites.Length; n++) 343child.AddAttribute( "Site", m_sites[n].ToString() );