/// <remarks/>
 public void CreateVhcAsync(Reception reception) {
     this.CreateVhcAsync(reception, null);
 }
 /// <remarks/>
 public void CreateVhcAsync(Reception reception, object userState) {
     if ((this.CreateVhcOperationCompleted == null)) {
         this.CreateVhcOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCreateVhcOperationCompleted);
     }
     this.InvokeAsync("CreateVhc", new object[] {
                 reception}, this.CreateVhcOperationCompleted, userState);
 }
 public VhcResult CreateVhc(Reception reception) {
     object[] results = this.Invoke("CreateVhc", new object[] {
                 reception});
     return ((VhcResult)(results[0]));
 }