예제 #1
0
파일: Reference.cs 프로젝트: dblock/sncore
 /// <remarks/>
 public void CreateOrUpdatePlaceNameAsync(string ticket, TransitPlaceName placename) {
     this.CreateOrUpdatePlaceNameAsync(ticket, placename, null);
 }
예제 #2
0
파일: Reference.cs 프로젝트: dblock/sncore
 /// <remarks/>
 public void CreateOrUpdatePlaceNameAsync(string ticket, TransitPlaceName placename, object userState) {
     if ((this.CreateOrUpdatePlaceNameOperationCompleted == null)) {
         this.CreateOrUpdatePlaceNameOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCreateOrUpdatePlaceNameOperationCompleted);
     }
     this.InvokeAsync("CreateOrUpdatePlaceName", new object[] {
                 ticket,
                 placename}, this.CreateOrUpdatePlaceNameOperationCompleted, userState);
 }
예제 #3
0
파일: Reference.cs 프로젝트: dblock/sncore
 public int CreateOrUpdatePlaceName(string ticket, TransitPlaceName placename) {
     object[] results = this.Invoke("CreateOrUpdatePlaceName", new object[] {
                 ticket,
                 placename});
     return ((int)(results[0]));
 }