Xceed .NET Libraries Documentation
Xceed.Ftp Assembly / Xceed.Ftp Namespace / FtpClient Class / CertificateReceived Event


In This Topic
    CertificateReceived Event (FtpClient)
    In This Topic
    Raised when an FTP server's certificate was received and verified.
    Syntax
    'Declaration
     
    Public Event CertificateReceived As CertificateReceivedEventHandler
    'Usage
     
    Dim instance As FtpClient
    Dim handler As CertificateReceivedEventHandler
     
    AddHandler instance.CertificateReceived, handler
    public event CertificateReceivedEventHandler CertificateReceived
    Event Data

    The event handler receives an argument of type CertificateReceivedEventArgs containing data related to this event. The following CertificateReceivedEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets or sets the verification action to take when a certificate is received from an FTP server.  
    Gets or sets the verification flags used to verify the FTP server's certificate.  
    Gets the certificate received from the FTP server.  
    Gets the verification status of the certificate received from the FTP server.  
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also