Microsoft.Protocols.TestSuites.MS_AUTHWS.AuthenticationSoap.BeginLogin C# (CSharp) Method

BeginLogin() public method

public BeginLogin ( string username, string password, System callback, object asyncState ) : System.IAsyncResult
username string
password string
callback System
asyncState object
return System.IAsyncResult
        public System.IAsyncResult BeginLogin(string username, string password, System.AsyncCallback callback, object asyncState)
        {
            return this.BeginInvoke("Login", new object[] {
                    username,
                    password}, callback, asyncState);
        }