コード例 #1
0
ファイル: Reference.cs プロジェクト: dblock/sncore
 /// <remarks/>
 public void GetAccountStoriesCountAsync(string ticket, int id, AccountStoryQueryOptions queryoptions, object userState) {
     if ((this.GetAccountStoriesCountOperationCompleted == null)) {
         this.GetAccountStoriesCountOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetAccountStoriesCountOperationCompleted);
     }
     this.InvokeAsync("GetAccountStoriesCount", new object[] {
                 ticket,
                 id,
                 queryoptions}, this.GetAccountStoriesCountOperationCompleted, userState);
 }
コード例 #2
0
ファイル: Reference.cs プロジェクト: dblock/sncore
 public int GetAccountStoriesCount(string ticket, int id, AccountStoryQueryOptions queryoptions) {
     object[] results = this.Invoke("GetAccountStoriesCount", new object[] {
                 ticket,
                 id,
                 queryoptions});
     return ((int)(results[0]));
 }
コード例 #3
0
ファイル: Reference.cs プロジェクト: dblock/sncore
 /// <remarks/>
 public void GetAccountStoriesCountAsync(string ticket, int id, AccountStoryQueryOptions queryoptions) {
     this.GetAccountStoriesCountAsync(ticket, id, queryoptions, null);
 }
コード例 #4
0
ファイル: Reference.cs プロジェクト: dblock/sncore
 public TransitAccountStory[] GetAccountStories(string ticket, int id, AccountStoryQueryOptions queryoptions, ServiceQueryOptions options) {
     object[] results = this.Invoke("GetAccountStories", new object[] {
                 ticket,
                 id,
                 queryoptions,
                 options});
     return ((TransitAccountStory[])(results[0]));
 }