示例#1
0
 /// <remarks/>
 public void GetAccountEventInstancesCountAsync(string ticket, TransitAccountEventInstanceQueryOptions qopt, object userState) {
     if ((this.GetAccountEventInstancesCountOperationCompleted == null)) {
         this.GetAccountEventInstancesCountOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetAccountEventInstancesCountOperationCompleted);
     }
     this.InvokeAsync("GetAccountEventInstancesCount", new object[] {
                 ticket,
                 qopt}, this.GetAccountEventInstancesCountOperationCompleted, userState);
 }
示例#2
0
 /// <remarks/>
 public void GetAccountEventInstancesCountAsync(string ticket, TransitAccountEventInstanceQueryOptions qopt) {
     this.GetAccountEventInstancesCountAsync(ticket, qopt, null);
 }
示例#3
0
 /// <remarks/>
 public void GetAccountEventInstancesAsync(string ticket, TransitAccountEventInstanceQueryOptions qopt, ServiceQueryOptions options) {
     this.GetAccountEventInstancesAsync(ticket, qopt, options, null);
 }
示例#4
0
 public int GetAccountEventInstancesCount(string ticket, TransitAccountEventInstanceQueryOptions qopt) {
     object[] results = this.Invoke("GetAccountEventInstancesCount", new object[] {
                 ticket,
                 qopt});
     return ((int)(results[0]));
 }
示例#5
0
 public TransitAccountEventInstance[] GetAccountEventInstances(string ticket, TransitAccountEventInstanceQueryOptions qopt, ServiceQueryOptions options) {
     object[] results = this.Invoke("GetAccountEventInstances", new object[] {
                 ticket,
                 qopt,
                 options});
     return ((TransitAccountEventInstance[])(results[0]));
 }