コード例 #1
0
ファイル: Reference.cs プロジェクト: dblock/sncore
 /// <remarks/>
 public void GetAllAccountFeedItemsAsync(string ticket, TransitAccountFeedItemQueryOptions qopt, ServiceQueryOptions options, object userState) {
     if ((this.GetAllAccountFeedItemsOperationCompleted == null)) {
         this.GetAllAccountFeedItemsOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetAllAccountFeedItemsOperationCompleted);
     }
     this.InvokeAsync("GetAllAccountFeedItems", new object[] {
                 ticket,
                 qopt,
                 options}, this.GetAllAccountFeedItemsOperationCompleted, userState);
 }
コード例 #2
0
ファイル: Reference.cs プロジェクト: dblock/sncore
 /// <remarks/>
 public void GetAllAccountFeedItemsAsync(string ticket, TransitAccountFeedItemQueryOptions qopt, ServiceQueryOptions options) {
     this.GetAllAccountFeedItemsAsync(ticket, qopt, options, null);
 }
コード例 #3
0
ファイル: Reference.cs プロジェクト: dblock/sncore
 /// <remarks/>
 public void GetAllAccountFeedItemsCountAsync(string ticket, TransitAccountFeedItemQueryOptions qopt) {
     this.GetAllAccountFeedItemsCountAsync(ticket, qopt, null);
 }
コード例 #4
0
ファイル: Reference.cs プロジェクト: dblock/sncore
 public TransitAccountFeedItem[] GetAllAccountFeedItems(string ticket, TransitAccountFeedItemQueryOptions qopt, ServiceQueryOptions options) {
     object[] results = this.Invoke("GetAllAccountFeedItems", new object[] {
                 ticket,
                 qopt,
                 options});
     return ((TransitAccountFeedItem[])(results[0]));
 }
コード例 #5
0
ファイル: Reference.cs プロジェクト: dblock/sncore
 public int GetAllAccountFeedItemsCount(string ticket, TransitAccountFeedItemQueryOptions qopt) {
     object[] results = this.Invoke("GetAllAccountFeedItemsCount", new object[] {
                 ticket,
                 qopt});
     return ((int)(results[0]));
 }