7 instantiations of StrongName2
mscorlib (7)
system\security\permissions\strongnameidentitypermission.cs (7)
46return new StrongName2(m_publicKeyBlob, m_name, m_version); 151m_strongNames[0] = new StrongName2(blob, name, version); 174m_strongNames[0] = new StrongName2(value, "", new Version()); 201m_strongNames[0] = new StrongName2(null, value, new Version()); 225m_strongNames[0] = new StrongName2(null, "", value); 418sn = new StrongName2( 434sn = new StrongName2(
27 references to StrongName2
mscorlib (27)
system\security\permissions\strongnameidentitypermission.cs (27)
44public StrongName2 Copy() 49public bool IsSubsetOf(StrongName2 target) 84public StrongName2 Intersect(StrongName2 target) 94public bool Equals(StrongName2 target) 117private StrongName2[] m_strongNames; 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]; 293foreach(StrongName2 snThis in m_strongNames) 298foreach(StrongName2 snThat in that.m_strongNames) 335List<StrongName2> alStrongNames = new List<StrongName2>(); 336foreach(StrongName2 snThis in this.m_strongNames) 338foreach(StrongName2 snThat in that.m_strongNames) 340StrongName2 snInt = (StrongName2)snThis.Intersect(snThat); 377List<StrongName2> alStrongNames = new List<StrongName2>(); 378foreach(StrongName2 snThis in this.m_strongNames) 380foreach(StrongName2 snThat in that.m_strongNames) 383foreach(StrongName2 sn in alStrongNames) 414StrongName2 sn; 415List<StrongName2> al = new List<StrongName2>();