|   | ICertificateCheckerValidateRemoteCertificate Method | 
        
        
            Verifies the remote certificate used for authentication.
            
        
        Namespace: GSF.Net.SecurityAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.257-beta+00aa2366fbb9ec75f636ebc7cfa610e3826a727c
 Syntax
Syntaxbool ValidateRemoteCertificate(
	Object sender,
	X509Certificate remoteCertificate,
	X509Chain chain,
	SslPolicyErrors errors
)
Function ValidateRemoteCertificate ( 
	sender As Object,
	remoteCertificate As X509Certificate,
	chain As X509Chain,
	errors As SslPolicyErrors
) As Boolean
bool ValidateRemoteCertificate(
	Object^ sender, 
	X509Certificate^ remoteCertificate, 
	X509Chain^ chain, 
	SslPolicyErrors errors
)
abstract ValidateRemoteCertificate : 
        sender : Object * 
        remoteCertificate : X509Certificate * 
        chain : X509Chain * 
        errors : SslPolicyErrors -> bool function ValidateRemoteCertificate(sender, remoteCertificate, chain, errors);
Parameters
- sender  Object
- An object that contains state information for this validation.
- remoteCertificate  X509Certificate
- The certificate used to authenticate the remote party.
- chain  X509Chain
- The chain of certificate authorities associated with the remote certificate.
- errors  SslPolicyErrors
- One or more errors associated with the remote certificate.
Return Value
BooleanA flag that determines whether the specified certificate is accepted for authentication.
 See Also
See Also