FtpSslValidation Delegate

System.Net.FtpClient

Collapse image Expand Image Copy image CopyHover image
Event is fired when a ssl certificate needs to be validated

Namespace: System.Net.FtpClient
Assembly: System.Net.FtpClient (in System.Net.FtpClient.dll) Version: 1.0.5064.17461

Syntax

C#
public delegate void FtpSslValidation(
	FtpClient control,
	FtpSslValidationEventArgs e
)
Visual Basic
Public Delegate Sub FtpSslValidation ( 
	control As FtpClient,
	e As FtpSslValidationEventArgs
)
Visual C++
public delegate void FtpSslValidation(
	FtpClient^ control, 
	FtpSslValidationEventArgs^ e
)

Parameters

control
Type: System.Net.FtpClient..::..FtpClient
The contol connection that triggered the event
e
Type: System.Net.FtpClient..::..FtpSslValidationEventArgs
Event args

See Also