6 writes to m_certs
mscorlib (6)
system\security\permissions\publisheridentitypermission.cs (6)
74
m_certs
= new X509Certificate[1];
126
perm.
m_certs
= new X509Certificate[this.m_certs.Length];
207
result.
m_certs
= (X509Certificate[])alCerts.ToArray(typeof(X509Certificate));
254
result.
m_certs
= (X509Certificate[])alCerts.ToArray(typeof(X509Certificate));
262
m_certs
= null;
285
m_certs
= (X509Certificate[])al.ToArray(typeof(X509Certificate));
39 references to m_certs
mscorlib (39)
system\security\permissions\publisheridentitypermission.cs (39)
75
m_certs
[0] = new X509Certificate(value);
80
if(
m_certs
== null ||
m_certs
.Length < 1)
82
if(
m_certs
.Length > 1)
84
if(
m_certs
[0] == null)
86
return new X509Certificate(
m_certs
[0]);
124
if(this.
m_certs
!= null)
126
perm.m_certs = new X509Certificate[this.
m_certs
.Length];
128
for(n = 0; n < this.
m_certs
.Length; n++)
129
perm.
m_certs
[n] = (
m_certs
[n] == null ? null : new X509Certificate(
m_certs
[n]));
140
if(
m_certs
== null)
142
if(
m_certs
.Length == 0)
153
if(this.
m_certs
!= null)
155
foreach(X509Certificate certThis in this.
m_certs
)
158
if(that.
m_certs
!= null)
160
foreach(X509Certificate certThat in that.
m_certs
)
193
if(this.
m_certs
== null || that.
m_certs
== null || this.
m_certs
.Length == 0 || that.
m_certs
.Length == 0)
196
foreach(X509Certificate certThis in this.
m_certs
)
198
foreach(X509Certificate certThat in that.
m_certs
)
215
if((this.
m_certs
== null || this.
m_certs
.Length == 0) && !this.m_unrestricted)
228
if (this.
m_certs
== null || this.
m_certs
.Length == 0)
230
if(that.
m_certs
== null || that.
m_certs
.Length == 0)
234
if(that.
m_certs
== null || that.
m_certs
.Length == 0)
237
foreach(X509Certificate certThis in this.
m_certs
)
239
foreach(X509Certificate certThat in that.
m_certs
)
293
else if (
m_certs
!= null)
295
if (
m_certs
.Length == 1)
296
esd.AddAttribute( "X509v3Certificate",
m_certs
[0].GetRawCertDataString() );
300
for(n = 0; n <
m_certs
.Length; n++)
303
child.AddAttribute( "X509v3Certificate",
m_certs
[n].GetRawCertDataString() );