System.Security.Cryptography.X509Certificates.X509CertificateCollection.Remove C# (CSharp) Method

Remove() public method

public Remove ( System value ) : void
value System
return void
        public void Remove(System.Security.Cryptography.X509Certificates.X509Certificate value)
        {
        }

Same methods

X509CertificateCollection::Remove ( X509Certificate value ) : void

Usage Example

		public void Remove_Null () 
		{
			X509CertificateCollection c = new X509CertificateCollection ();
			// non existing
			c.Remove (null);
		}
All Usage Examples Of System.Security.Cryptography.X509Certificates.X509CertificateCollection::Remove