Ejemplo n.º 1
0
 /// <remarks/>
 public void SendFileSMSAsync(FileSMSRequest FileSMSRequest, byte[] File) {
     this.SendFileSMSAsync(FileSMSRequest, File, null);
 }
Ejemplo n.º 2
0
 /// <remarks/>
 public void SendFileSMSAsync(FileSMSRequest FileSMSRequest, byte[] File, object userState) {
     if ((this.SendFileSMSOperationCompleted == null)) {
         this.SendFileSMSOperationCompleted = new System.Threading.SendOrPostCallback(this.OnSendFileSMSOperationCompleted);
     }
     this.InvokeAsync("SendFileSMS", new object[] {
                 FileSMSRequest,
                 File}, this.SendFileSMSOperationCompleted, userState);
 }
Ejemplo n.º 3
0
 public FileSMSResponse SendFileSMS(FileSMSRequest FileSMSRequest, [System.Xml.Serialization.XmlElementAttribute(DataType="base64Binary")] byte[] File) {
     object[] results = this.Invoke("SendFileSMS", new object[] {
                 FileSMSRequest,
                 File});
     return ((FileSMSResponse)(results[0]));
 }