Microsoft.Protocols.TestSuites.MS_OXORULE.NspiMapiHttpAdapter.NspiMapiHttpAdapter C# (CSharp) Method

NspiMapiHttpAdapter() public method

Initializes a new instance of the NspiMapiHttpAdapter class.
public NspiMapiHttpAdapter ( ITestSite site, string userName, string password, string domainName, string addressBookUrl ) : System
site ITestSite The Site instance.
userName string The Mailbox userName which can be used by client to connect to the SUT.
password string The user password which can be used by client to access to the SUT.
domainName string Define the name of domain where the server belongs to.
addressBookUrl string The URL that a client can use to connect with a NSPI server through MAPI over HTTP.
return System
        public NspiMapiHttpAdapter(ITestSite site, string userName, string password, string domainName, string addressBookUrl)
        {
            this.site = site;
            this.userName = userName;
            this.password = password;
            this.domainName = domainName;
            this.addressBookUrl = addressBookUrl;
        }