Microsoft.Protocols.TestSuites.MS_OXCROPS.MS_OXCROPSAdapter.RpcConnect C# (CSharp) Method

RpcConnect() public method

Connect to the server for RPC calling. This method is defined as a direct way to connect to server with specific parameters.
public RpcConnect ( string server, ConnectionType connectionType, string userDN, string domain, string userName, string password ) : bool
server string Server to connect.
connectionType ConnectionType the type of connection
userDN string User DN used to connect server
domain string Domain name
userName string User name used to logon
password string User Password
return bool
        public bool RpcConnect(string server, ConnectionType connectionType, string userDN, string domain, string userName, string password)
        {
            bool ret = this.oxcropsClient.Connect(
                server,
                connectionType,
                userDN,
                domain,
                userName,
                password);
            this.isConnected = ret;
            return ret;
        }
MS_OXCROPSAdapter