Beispiel #1
0
 public System.Threading.Tasks.Task <OnTime.Web.MailService.SendEmalResponse> SendEmalAsync(string receiveMailAddress, string subject, string bodyInfo, string SendEmail, string SendPassword)
 {
     OnTime.Web.MailService.SendEmalRequest inValue = new OnTime.Web.MailService.SendEmalRequest();
     inValue.Body = new OnTime.Web.MailService.SendEmalRequestBody();
     inValue.Body.receiveMailAddress = receiveMailAddress;
     inValue.Body.subject            = subject;
     inValue.Body.bodyInfo           = bodyInfo;
     inValue.Body.SendEmail          = SendEmail;
     inValue.Body.SendPassword       = SendPassword;
     return(((OnTime.Web.MailService.WebServiceSoap)(this)).SendEmalAsync(inValue));
 }
Beispiel #2
0
 public bool SendEmal(string receiveMailAddress, string subject, string bodyInfo, string SendEmail, string SendPassword)
 {
     OnTime.Web.MailService.SendEmalRequest inValue = new OnTime.Web.MailService.SendEmalRequest();
     inValue.Body = new OnTime.Web.MailService.SendEmalRequestBody();
     inValue.Body.receiveMailAddress = receiveMailAddress;
     inValue.Body.subject            = subject;
     inValue.Body.bodyInfo           = bodyInfo;
     inValue.Body.SendEmail          = SendEmail;
     inValue.Body.SendPassword       = SendPassword;
     OnTime.Web.MailService.SendEmalResponse retVal = ((OnTime.Web.MailService.WebServiceSoap)(this)).SendEmal(inValue);
     return(retVal.Body.SendEmalResult);
 }
Beispiel #3
0
 System.Threading.Tasks.Task <OnTime.Web.MailService.SendEmalResponse> OnTime.Web.MailService.WebServiceSoap.SendEmalAsync(OnTime.Web.MailService.SendEmalRequest request)
 {
     return(base.Channel.SendEmalAsync(request));
 }
Beispiel #4
0
 OnTime.Web.MailService.SendEmalResponse OnTime.Web.MailService.WebServiceSoap.SendEmal(OnTime.Web.MailService.SendEmalRequest request)
 {
     return(base.Channel.SendEmal(request));
 }