InitializeSharedContextForFSSHTTP() public static method

Initialize the SharedContext SharedContext based on the specified request file URL, user name, password and domain for the MS-FSSHTTP test purpose.
public static InitializeSharedContextForFSSHTTP ( string userName, string password, string domain, ITestSite site ) : void
userName string Specify the user name.
password string Specify the password.
domain string Specify the domain.
site ITestSite An object provides logging, assertions, and SUT adapters for test code onto its execution context.
return void
 /// <summary>
 /// Initialize the shared context based on the specified request file URL, user name, password and domain for the MS-FSSHTTP test purpose.
 /// </summary>
 /// <param name="requestFileUrl">Specify the request file URL.</param>
 /// <param name="userName">Specify the user name.</param>
 /// <param name="password">Specify the password.</param>
 /// <param name="domain">Specify the domain.</param>
 protected override void InitializeContext(string requestFileUrl, string userName, string password, string domain)
 {
     SharedContextUtils.InitializeSharedContextForFSSHTTP(userName, password, domain, this.Site);
 }