Connection CLASS
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
Gets the currently used connection SYNTAX public static Connection CurrentConnection { get; }
Sun, May 6, 2018 at 4:20 PM
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
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
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
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
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
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
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
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