iControl.Interfaces.initializeInterface C# (CSharp) 메소드

initializeInterface() 개인적인 메소드

private initializeInterface ( iControlInterface oInterface ) : void
oInterface iControlInterface
리턴 void
        private void initializeInterface(iControlInterface oInterface)
        {
            String url = (null == m_authToken) ? m_ci.buildURL() : m_ci.buildURLwToken(m_emIPAddress, m_authToken);
            oInterface.Url = url;
            oInterface.Credentials = m_ci.creds;
            oInterface.PreAuthenticate = true;

            if (null != m_proxyServer)
            {
                oInterface.Proxy = m_proxyServer;
            }

            oInterface.interfaces = this;
        }

Same methods

Interfaces::initializeInterface ( System oInterface ) : void