public bool Login(string username, string password) { ServiceG2A.PK.LoginRequest inValue = new ServiceG2A.PK.LoginRequest(); inValue.Body = new ServiceG2A.PK.LoginRequestBody(); inValue.Body.username = username; inValue.Body.password = password; ServiceG2A.PK.LoginResponse retVal = ((ServiceG2A.PK.WebServicePKSoap)(this)).Login(inValue); return(retVal.Body.LoginResult); }
ServiceG2A.PK.LoginResponse ServiceG2A.PK.WebServicePKSoap.Login(ServiceG2A.PK.LoginRequest request) { return(base.Channel.Login(request)); }