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