コード例 #1
0
ファイル: Reference.cs プロジェクト: dblock/sncore
 public int GetAccountFeedItemImgsCount(string ticket, TransitAccountFeedItemImgQueryOptions options) {
     object[] results = this.Invoke("GetAccountFeedItemImgsCount", new object[] {
                 ticket,
                 options});
     return ((int)(results[0]));
 }
コード例 #2
0
ファイル: Reference.cs プロジェクト: dblock/sncore
 /// <remarks/>
 public void GetAccountFeedItemImgsAsync(string ticket, TransitAccountFeedItemImgQueryOptions qopt, ServiceQueryOptions options) {
     this.GetAccountFeedItemImgsAsync(ticket, qopt, options, null);
 }
コード例 #3
0
ファイル: Reference.cs プロジェクト: dblock/sncore
 /// <remarks/>
 public void GetAccountFeedItemImgsAsync(string ticket, TransitAccountFeedItemImgQueryOptions qopt, ServiceQueryOptions options, object userState) {
     if ((this.GetAccountFeedItemImgsOperationCompleted == null)) {
         this.GetAccountFeedItemImgsOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetAccountFeedItemImgsOperationCompleted);
     }
     this.InvokeAsync("GetAccountFeedItemImgs", new object[] {
                 ticket,
                 qopt,
                 options}, this.GetAccountFeedItemImgsOperationCompleted, userState);
 }
コード例 #4
0
ファイル: Reference.cs プロジェクト: dblock/sncore
 public TransitAccountFeedItemImg[] GetAccountFeedItemImgs(string ticket, TransitAccountFeedItemImgQueryOptions qopt, ServiceQueryOptions options) {
     object[] results = this.Invoke("GetAccountFeedItemImgs", new object[] {
                 ticket,
                 qopt,
                 options});
     return ((TransitAccountFeedItemImg[])(results[0]));
 }