예제 #1
0
파일: Reference.cs 프로젝트: dblock/sncore
 /// <remarks/>
 public void GetConfigurationsAsync(string ticket, ServiceQueryOptions options) {
     this.GetConfigurationsAsync(ticket, options, null);
 }
예제 #2
0
파일: Reference.cs 프로젝트: dblock/sncore
 /// <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);
 }
예제 #3
0
파일: Reference.cs 프로젝트: dblock/sncore
 public TransitConfiguration[] GetConfigurations(string ticket, ServiceQueryOptions options) {
     object[] results = this.Invoke("GetConfigurations", new object[] {
                 ticket,
                 options});
     return ((TransitConfiguration[])(results[0]));
 }