Esempio n. 1
0
 /// <remarks/>
 public void LogContentLinkAsync(ContentClickRecord[] log_records) {
     this.LogContentLinkAsync(log_records, null);
 }
Esempio n. 2
0
 /// <remarks/>
 public void LogContentLinkAsync(ContentClickRecord[] log_records, object userState) {
     if ((this.LogContentLinkOperationCompleted == null)) {
         this.LogContentLinkOperationCompleted = new System.Threading.SendOrPostCallback(this.OnLogContentLinkOperationCompleted);
     }
     this.InvokeAsync("LogContentLink", new object[] {
                 log_records}, this.LogContentLinkOperationCompleted, userState);
 }
Esempio n. 3
0
 public WebServiceResult LogContentLink(ContentClickRecord[] log_records) {
     object[] results = this.Invoke("LogContentLink", new object[] {
                 log_records});
     return ((WebServiceResult)(results[0]));
 }