9 writes to m_strongNames
mscorlib (9)
system\security\permissions\strongnameidentitypermission.cs (9)
150m_strongNames = new StrongName2[1]; 173m_strongNames = new StrongName2[1]; 200m_strongNames = new StrongName2[1]; 224m_strongNames = new StrongName2[1]; 264perm.m_strongNames = new StrongName2[this.m_strongNames.Length]; 348result.m_strongNames = alStrongNames.ToArray(); 395result.m_strongNames = alStrongNames.ToArray(); 403m_strongNames = null; 443m_strongNames = al.ToArray();
67 references to m_strongNames
mscorlib (67)
system\security\permissions\strongnameidentitypermission.cs (67)
151m_strongNames[0] = new StrongName2(blob, name, version); 169if(m_strongNames != null && m_strongNames.Length == 1) 170m_strongNames[0].m_publicKeyBlob = value; 174m_strongNames[0] = new StrongName2(value, "", new Version()); 180if(m_strongNames == null || m_strongNames.Length == 0) 182if(m_strongNames.Length > 1) 184return m_strongNames[0].m_publicKeyBlob; 196if(m_strongNames != null && m_strongNames.Length == 1) 197m_strongNames[0].m_name = value; 201m_strongNames[0] = new StrongName2(null, value, new Version()); 207if(m_strongNames == null || m_strongNames.Length == 0) 209if(m_strongNames.Length > 1) 211return m_strongNames[0].m_name; 220if(m_strongNames != null && m_strongNames.Length == 1) 221m_strongNames[0].m_version = value; 225m_strongNames[0] = new StrongName2(null, "", value); 231if(m_strongNames == null || m_strongNames.Length == 0) 233if(m_strongNames.Length > 1) 235return m_strongNames[0].m_version; 262if(this.m_strongNames != null) 264perm.m_strongNames = new StrongName2[this.m_strongNames.Length]; 266for(n = 0; n < this.m_strongNames.Length; n++) 267perm.m_strongNames[n] = this.m_strongNames[n].Copy(); 278if(m_strongNames == null) 280if(m_strongNames.Length == 0) 291if(this.m_strongNames != null) 293foreach(StrongName2 snThis in m_strongNames) 296if(that.m_strongNames != null) 298foreach(StrongName2 snThat in that.m_strongNames) 333if(this.m_strongNames == null || that.m_strongNames == null || this.m_strongNames.Length == 0 || that.m_strongNames.Length == 0) 336foreach(StrongName2 snThis in this.m_strongNames) 338foreach(StrongName2 snThat in that.m_strongNames) 356if((this.m_strongNames == null || this.m_strongNames.Length == 0) && !this.m_unrestricted) 369if (this.m_strongNames == null || this.m_strongNames.Length == 0) 371if(that.m_strongNames == null || that.m_strongNames.Length == 0) 375if(that.m_strongNames == null || that.m_strongNames.Length == 0) 378foreach(StrongName2 snThis in this.m_strongNames) 380foreach(StrongName2 snThat in that.m_strongNames) 451else if (m_strongNames != null) 453if (m_strongNames.Length == 1) 455if (m_strongNames[0].m_publicKeyBlob != null) 456esd.AddAttribute("PublicKeyBlob", Hex.EncodeHexString(m_strongNames[0].m_publicKeyBlob.PublicKey)); 457if (m_strongNames[0].m_name != null) 458esd.AddAttribute("Name", m_strongNames[0].m_name); 459if ((Object)m_strongNames[0].m_version != null) 460esd.AddAttribute("AssemblyVersion", m_strongNames[0].m_version.ToString()); 465for(n = 0; n < m_strongNames.Length; n++) 468if (m_strongNames[n].m_publicKeyBlob != null) 469child.AddAttribute("PublicKeyBlob", Hex.EncodeHexString(m_strongNames[n].m_publicKeyBlob.PublicKey)); 470if (m_strongNames[n].m_name != null) 471child.AddAttribute("Name", m_strongNames[n].m_name); 472if ((Object)m_strongNames[n].m_version != null) 473child.AddAttribute("AssemblyVersion", m_strongNames[n].m_version.ToString());