Beispiel #1
0
 /// <remarks/>
 public void GetPostCommentsAsync(string ticket, TransitPostCommentQueryOptions options, object userState) {
     if ((this.GetPostCommentsOperationCompleted == null)) {
         this.GetPostCommentsOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetPostCommentsOperationCompleted);
     }
     this.InvokeAsync("GetPostComments", new object[] {
                 ticket,
                 options}, this.GetPostCommentsOperationCompleted, userState);
 }
Beispiel #2
0
 public TransitPostComment[] GetPostComments(string ticket, TransitPostCommentQueryOptions options) {
     object[] results = this.Invoke("GetPostComments", new object[] {
                 ticket,
                 options});
     return ((TransitPostComment[])(results[0]));
 }
Beispiel #3
0
 /// <remarks/>
 public void GetPostCommentsAsync(string ticket, TransitPostCommentQueryOptions options) {
     this.GetPostCommentsAsync(ticket, options, null);
 }
Beispiel #4
0
 public int GetPostCommentsCount(string ticket, TransitPostCommentQueryOptions options) {
     object[] results = this.Invoke("GetPostCommentsCount", new object[] {
                 ticket,
                 options});
     return ((int)(results[0]));
 }