コード例 #1
0
 public System.Threading.Tasks.Task <StockTicker.Web.AccountServiceReference.RegisterResponse> RegisterAsync(string fullName, string email, string password)
 {
     StockTicker.Web.AccountServiceReference.RegisterRequest inValue = new StockTicker.Web.AccountServiceReference.RegisterRequest();
     inValue.Body          = new StockTicker.Web.AccountServiceReference.RegisterRequestBody();
     inValue.Body.fullName = fullName;
     inValue.Body.email    = email;
     inValue.Body.password = password;
     return(((StockTicker.Web.AccountServiceReference.AccountWebServiceSoap)(this)).RegisterAsync(inValue));
 }
コード例 #2
0
 public StockTicker.Web.AccountServiceReference.ResultModelOfUserModel Register(string fullName, string email, string password)
 {
     StockTicker.Web.AccountServiceReference.RegisterRequest inValue = new StockTicker.Web.AccountServiceReference.RegisterRequest();
     inValue.Body          = new StockTicker.Web.AccountServiceReference.RegisterRequestBody();
     inValue.Body.fullName = fullName;
     inValue.Body.email    = email;
     inValue.Body.password = password;
     StockTicker.Web.AccountServiceReference.RegisterResponse retVal = ((StockTicker.Web.AccountServiceReference.AccountWebServiceSoap)(this)).Register(inValue);
     return(retVal.Body.RegisterResult);
 }
コード例 #3
0
 System.Threading.Tasks.Task <StockTicker.Web.AccountServiceReference.RegisterResponse> StockTicker.Web.AccountServiceReference.AccountWebServiceSoap.RegisterAsync(StockTicker.Web.AccountServiceReference.RegisterRequest request)
 {
     return(base.Channel.RegisterAsync(request));
 }
コード例 #4
0
 StockTicker.Web.AccountServiceReference.RegisterResponse StockTicker.Web.AccountServiceReference.AccountWebServiceSoap.Register(StockTicker.Web.AccountServiceReference.RegisterRequest request)
 {
     return(base.Channel.Register(request));
 }