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