/// <summary>Remove an ICertificateVerification.</summary> public bool RemoveCertificateVerification(ICertificateVerification certificate_verifier) { return _certificate_verifiers.Remove(certificate_verifier); }
/// <summary>Remove an ICertificateVerification.</summary> public bool RemoveCertificateVerification(ICertificateVerification certificate_verifier) { return(_certificate_verifiers.Remove(certificate_verifier)); }
/// <summary>Add an ICertificateVerification to be called during verification of /// certificates</summary> public bool AddCertificateVerification(ICertificateVerification certificate_verifier) { _certificate_verifiers.Add(certificate_verifier); return true; }
/// <summary>Add an ICertificateVerification to be called during verification of /// certificates</summary> public bool AddCertificateVerification(ICertificateVerification certificate_verifier) { _certificate_verifiers.Add(certificate_verifier); return(true); }