Example #1
0
 /// <remarks/>
 public void GetPermalinkBySourceAsync(string ticket, TransitPermalinkQueryOptions options) {
     this.GetPermalinkBySourceAsync(ticket, options, null);
 }
Example #2
0
 /// <remarks/>
 public void GetPermalinkBySourceAsync(string ticket, TransitPermalinkQueryOptions options, object userState) {
     if ((this.GetPermalinkBySourceOperationCompleted == null)) {
         this.GetPermalinkBySourceOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetPermalinkBySourceOperationCompleted);
     }
     this.InvokeAsync("GetPermalinkBySource", new object[] {
                 ticket,
                 options}, this.GetPermalinkBySourceOperationCompleted, userState);
 }
Example #3
0
 public TransitPermalink GetPermalinkBySource(string ticket, TransitPermalinkQueryOptions options) {
     object[] results = this.Invoke("GetPermalinkBySource", new object[] {
                 ticket,
                 options});
     return ((TransitPermalink)(results[0]));
 }