iControl.Interfaces.initialize C# (CSharp) Method

initialize() public method

public initialize ( String hostname, String username, String password ) : bool
hostname String
username String
password String
return bool
        public bool initialize(String hostname, String username, String password)
        {
            return initialize(hostname, 443, username, password);
        }

Same methods

Interfaces::initialize ( String hostname, long port, String username, String password ) : bool
Interfaces::initialize ( String hostname, long port, String username, String password, String proxyServer, long proxyPort, String proxyUser, String proxyPass ) : bool

Usage Example

Esempio n. 1
0
        public bool LoginUser(string URI, string username, string ipassword)
        {
            LoadAll.ConnectionInfo.clear();
            bool bInitialized = LoadAll.initialize(URI, Constants.username, Constants.password);

            return(bInitialized);
        }
All Usage Examples Of iControl.Interfaces::initialize