/// <remarks/> public void GetConfigurationsAsync(string ticket, ServiceQueryOptions options) { this.GetConfigurationsAsync(ticket, options, null); }
/// <remarks/> public void GetConfigurationsAsync(string ticket, ServiceQueryOptions options, object userState) { if ((this.GetConfigurationsOperationCompleted == null)) { this.GetConfigurationsOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetConfigurationsOperationCompleted); } this.InvokeAsync("GetConfigurations", new object[] { ticket, options}, this.GetConfigurationsOperationCompleted, userState); }
public TransitConfiguration[] GetConfigurations(string ticket, ServiceQueryOptions options) { object[] results = this.Invoke("GetConfigurations", new object[] { ticket, options}); return ((TransitConfiguration[])(results[0])); }