예제 #1
0
 /// <remarks/>
 public void SendEmailInviteAsync(string authenticationKey, Email email, System.Nullable<int> idCliente, string uri, object userState) {
     if ((this.SendEmailInviteOperationCompleted == null)) {
         this.SendEmailInviteOperationCompleted = new System.Threading.SendOrPostCallback(this.OnSendEmailInviteOperationCompleted);
     }
     this.InvokeAsync("SendEmailInvite", new object[] {
                 authenticationKey,
                 email,
                 idCliente,
                 uri}, this.SendEmailInviteOperationCompleted, userState);
 }
예제 #2
0
 /// <remarks/>
 public void SendEmailInviteAsync(string authenticationKey, Email email, System.Nullable<int> idCliente, string uri) {
     this.SendEmailInviteAsync(authenticationKey, email, idCliente, uri, null);
 }
예제 #3
0
 public ToModel[] SendEmailInvite(string authenticationKey, Email email, [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] System.Nullable<int> idCliente, string uri) {
     object[] results = this.Invoke("SendEmailInvite", new object[] {
                 authenticationKey,
                 email,
                 idCliente,
                 uri});
     return ((ToModel[])(results[0]));
 }
예제 #4
0
 /// <remarks/>
 public void SendEmailMarketingAsync(string authenticationKey, Email email, object userState) {
     if ((this.SendEmailMarketingOperationCompleted == null)) {
         this.SendEmailMarketingOperationCompleted = new System.Threading.SendOrPostCallback(this.OnSendEmailMarketingOperationCompleted);
     }
     this.InvokeAsync("SendEmailMarketing", new object[] {
                 authenticationKey,
                 email}, this.SendEmailMarketingOperationCompleted, userState);
 }
예제 #5
0
 /// <remarks/>
 public void SendEmailMarketingAsync(string authenticationKey, Email email) {
     this.SendEmailMarketingAsync(authenticationKey, email, null);
 }
예제 #6
0
 public bool SendEmailMarketing(string authenticationKey, Email email) {
     object[] results = this.Invoke("SendEmailMarketing", new object[] {
                 authenticationKey,
                 email});
     return ((bool)(results[0]));
 }