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