Connection CLASS

Address PROPERTY (string)
Gets connection address. SYNTAX public string Address { get; } EXAMPLE An object ‘Connection’ is created in the following example. After cr...
Sun, May 6, 2018 at 4:19 PM
CurrentConnection PROPERTY (Connection)
Gets the currently used connection SYNTAX public static Connection CurrentConnection { get; }
Sun, May 6, 2018 at 4:20 PM
IsHTTPConnection PROPERTY (bool)
Confirms if connection established via HTTP. SYNTAX public bool IsHTTPConnection { get; } EXAMPLE using System; using System.Collections; us...
Sun, May 6, 2018 at 4:21 PM
IsSavePassword PROPERTY (bool)
Gets connection login. SYNTAX public bool IsSavePassword { get; } EXAMPLE An object ‘Connection’ is created in the following example. After...
Sun, May 6, 2018 at 4:23 PM
IsUseSSL PROPERTY (bool)
Confirms if connection is secured via SSL. SYNTAX public bool IsUseSSL { get; } EXAMPLE using System; using System.Collections; using System...
Sun, May 6, 2018 at 4:26 PM
Login PROPERTY (string)
Gets connection login. SYNTAX public string Login { get; } EXAMPLE An object ‘Connection’ is created in the following example. After creati...
Sun, May 6, 2018 at 4:27 PM
Name PROPERTY (string)
Gets connection name. SYNTAX public string Name { get; } EXAMPLE An object ‘Connection’ is created in the following example. After creation...
Sun, May 6, 2018 at 4:28 PM
ProtocolVersion PROPERTY (string)
Gets the version of the HTTP protocol that is used in the response. SYNTAX public string ProtocolVersion { get; } EXAMPLE using System; usin...
Sun, May 6, 2018 at 4:29 PM
ProxyAddress PROPERTY (string)
Retrieves proxy address SYNTAX public static string ProxyAddress { get; } EXAMPLE using System; using System.Collections; using System.Colle...
Sun, May 6, 2018 at 4:32 PM
ProxyEnabled PROPERTY (bool)
Confirms if connection via proxy. SYNTAX public static bool ProxyEnabled { get; } EXAMPLE using System; using System.Collections; using Syst...
Sun, May 6, 2018 at 4:33 PM