コード例 #1
0
ファイル: Reference.cs プロジェクト: dblock/sncore
 /// <remarks/>
 public void GetAccountGroupPicturesAsync(string ticket, int groupid, ServiceQueryOptions options) {
     this.GetAccountGroupPicturesAsync(ticket, groupid, options, null);
 }
コード例 #2
0
ファイル: Reference.cs プロジェクト: dblock/sncore
 /// <remarks/>
 public void GetAccountGroupPicturesAsync(string ticket, int groupid, ServiceQueryOptions options, object userState) {
     if ((this.GetAccountGroupPicturesOperationCompleted == null)) {
         this.GetAccountGroupPicturesOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetAccountGroupPicturesOperationCompleted);
     }
     this.InvokeAsync("GetAccountGroupPictures", new object[] {
                 ticket,
                 groupid,
                 options}, this.GetAccountGroupPicturesOperationCompleted, userState);
 }
コード例 #3
0
ファイル: Reference.cs プロジェクト: dblock/sncore
 public TransitAccountGroupPicture[] GetAccountGroupPictures(string ticket, int groupid, ServiceQueryOptions options) {
     object[] results = this.Invoke("GetAccountGroupPictures", new object[] {
                 ticket,
                 groupid,
                 options});
     return ((TransitAccountGroupPicture[])(results[0]));
 }
コード例 #4
0
ファイル: Reference.cs プロジェクト: dblock/sncore
 /// <remarks/>
 public void GetPublicAccountGroupAccountsByAccountIdAsync(string ticket, int accountid, ServiceQueryOptions options) {
     this.GetPublicAccountGroupAccountsByAccountIdAsync(ticket, accountid, options, null);
 }
コード例 #5
0
ファイル: Reference.cs プロジェクト: dblock/sncore
 public TransitAccountGroupAccount[] GetPublicAccountGroupAccountsByAccountId(string ticket, int accountid, ServiceQueryOptions options) {
     object[] results = this.Invoke("GetPublicAccountGroupAccountsByAccountId", new object[] {
                 ticket,
                 accountid,
                 options});
     return ((TransitAccountGroupAccount[])(results[0]));
 }
コード例 #6
0
ファイル: Reference.cs プロジェクト: dblock/sncore
 /// <remarks/>
 public void GetPublicAccountGroupsAsync(string ticket, ServiceQueryOptions options) {
     this.GetPublicAccountGroupsAsync(ticket, options, null);
 }
コード例 #7
0
ファイル: Reference.cs プロジェクト: dblock/sncore
 public TransitAccountGroup[] GetPublicAccountGroups(string ticket, ServiceQueryOptions options) {
     object[] results = this.Invoke("GetPublicAccountGroups", new object[] {
                 ticket,
                 options});
     return ((TransitAccountGroup[])(results[0]));
 }