9 instantiations of StrongName
mscorlib (5)
system\security\policy\applicationsecurityinfo.cs (1)
177appEvidence.AddHostEvidence(new StrongName(new StrongNamePublicKeyBlob(DeploymentId.m_publicKeyToken),
system\security\policy\applicationtrust.cs (2)
100fullTrustList.Add(new StrongName(strongName.PublicKey, strongName.Name, strongName.Version)); 271StrongName fullTrustAssembly = new StrongName();
system\security\policy\assemblyevidencefactory.cs (1)
179return new StrongName(new StrongNamePublicKeyBlob(publicKeyBlob),
system\security\policy\strongname.cs (1)
131return new StrongName(m_publicKeyBlob, m_name, m_version);
System.AddIn (1)
System\Addin\Hosting\AddInActivator.cs (1)
707return new StrongName(keyBlob, assemblyName.Name, assemblyName.Version);
System.Configuration (1)
System\Configuration\ClientConfigPaths.cs (1)
444return new StrongName(sn.PublicKey, sn.Name, new Version(0,0,0,0));
System.Web (2)
Hosting\ApplicationManager.cs (2)
1348strongName = new StrongName(keyBlob, assemblyName, new Version(version)); 1369yield return new StrongName(publicKey, asmName, new Version(i, 0, 0, 0));
46 references to StrongName
mscorlib (33)
system\appdomain.cs (4)
3461params StrongName[] fullTrustAssemblies) 3471fullTrustAssemblies = new StrongName[0]; 4481if (evidence.GetDelayEvaluatedHostEvidence<StrongName>() != null) 4483foreach (StrongName fullTrustAssembly in ApplicationTrust.FullTrustAssemblies)
system\io\isolatedstorage\isolatedstorage.cs (4)
211else if (o is StrongName) 975o = evidence.GetHostEvidence<StrongName>(); 1038else if (o is StrongName) 1040oNormalized = ((StrongName)o).Normalize();
system\security\permissions\strongnameidentitypermission.cs (1)
68if (target.m_name == null || !System.Security.Policy.StrongName.CompareNames( target.m_name, this.m_name ))
system\security\policy\applicationtrust.cs (11)
55private IList<StrongName> m_fullTrustAssemblies; 84m_fullTrustAssemblies = new List<StrongName>().AsReadOnly(); 87public ApplicationTrust(PermissionSet defaultGrantSet, IEnumerable<StrongName> fullTrustAssemblies) { 94List<StrongName> fullTrustList = new List<StrongName>(); 95foreach (StrongName strongName in fullTrustAssemblies) { 150public IList<StrongName> FullTrustAssemblies { 213foreach (StrongName fullTrustAssembly in m_fullTrustAssemblies) { 266List<StrongName> fullTrustAssemblies = new List<StrongName>(); 271StrongName fullTrustAssembly = new StrongName();
system\security\policy\assemblyevidencefactory.cs (2)
88else if (evidenceType == typeof(StrongName)) 157private StrongName GenerateStrongNameEvidence()
system\security\policy\evidence.cs (2)
250typeof(StrongName), 1513EvidenceTypeDescriptor snTypeDescriptor = GetEvidenceTypeDescriptor(typeof(StrongName));
system\security\policy\policylevel.cs (2)
263public void AddFullTrustAssembly(StrongName sn) { 292public void RemoveFullTrustAssembly(StrongName sn) {
system\security\policy\strongname.cs (3)
187StrongName that = (o as StrongName); 206return typeof( StrongName ).GetHashCode();
system\security\policy\strongnamemembershipcondition.cs (3)
168StrongName name = evidence.GetDelayEvaluatedHostEvidence<StrongName>(); 172bool nameMatch = Name == null || (name.Name != null && StrongName.CompareNames(name.Name, Name));
system\security\policymanager.cs (1)
103evidence.GetHostEvidence<StrongName>();
System.AddIn (1)
System\Addin\Hosting\AddInActivator.cs (1)
687internal static StrongName CreateStrongName(Assembly assembly)
System.Configuration (5)
System\Configuration\ClientConfigPaths.cs (5)
370StrongName sn = null; 380if (temp is StrongName) { 381sn = (StrongName) temp; 443private static StrongName MakeVersionIndependent(StrongName sn) {
System.Web (7)
Hosting\ApplicationManager.cs (7)
65private static readonly StrongName _mwiV1StrongName = GetMicrosoftWebInfrastructureV1StrongName(); 918List<StrongName> fullTrustAssemblies = new List<StrongName>(); 1338private static StrongName CreateStrongName(string assemblyName, string version, string publicKeyString) { 1340StrongName strongName = null; 1358private static StrongName GetMicrosoftWebInfrastructureV1StrongName() { 1365private static IEnumerable<StrongName> CreateFutureMicrosoftWebInfrastructureStrongNames() {