Collection of authentication methods to be used.

Namespace: EnterpriseDT.Util.Socks
Assembly: edtFTPnetPRO (in edtFTPnetPRO.dll) Version: 9.4.0.40

Syntax

C#
public Socks5AuthMethodCollection AuthMethods { get; }
Visual Basic
Public ReadOnly Property AuthMethods As Socks5AuthMethodCollection
	Get
Visual C++
public:
property Socks5AuthMethodCollection^ AuthMethods {
	Socks5AuthMethodCollection^ get ();
}

Remarks

Before the context can be used, one or more authentication methods must be set using the AuthMethods property.

The SOCKS5 standard specifies three authentications methods. Currently, GSSAPI is not supported. If it is required please request it from EDT support.

Authentication MethodDescription
NullPerforms no authentication.
Username/PasswordUses a plain-text user-name/password combination.
GSSAPI(Currently not supported) Uses the Generic Security Services Application Program Interface (GSS-API) to communicate with system-level security services (SSPI on Windows) to authenticate the user.

See Also