iControl.ConnectionInfo.isValid C# (CSharp) Method

isValid() public method

public isValid ( ) : System.Boolean
return System.Boolean
        public Boolean isValid()
        {
            Boolean bValid = false;
            if ( (0 != m_hostname.Length) && (m_port > 0) &&
                (0 != m_endpoint.Length) &&
                (0 != m_username.Length) && (0 != m_password.Length) )
            {
                bValid = false;
            }
            return bValid;
        }