/// <remarks/>
 public void moveAsync(authentication authentication, identifier identifier, moveParameters moveParameters, workflowconfiguration workflowConfiguration)
 {
     this.moveAsync(authentication, identifier, moveParameters, workflowConfiguration, null);
 }
 /// <remarks/>
 public void moveAsync(authentication authentication, identifier identifier, moveParameters moveParameters, workflowconfiguration workflowConfiguration, object userState)
 {
     if ((this.moveOperationCompleted == null))
     {
         this.moveOperationCompleted = new System.Threading.SendOrPostCallback(this.OnmoveOperationCompleted);
     }
     this.InvokeAsync("move", new object[] {
                 authentication,
                 identifier,
                 moveParameters,
                 workflowConfiguration}, this.moveOperationCompleted, userState);
 }
 public operationResult move(authentication authentication, identifier identifier, moveParameters moveParameters, workflowconfiguration workflowConfiguration)
 {
     object[] results = this.Invoke("move", new object[] {
                 authentication,
                 identifier,
                 moveParameters,
                 workflowConfiguration});
     return ((operationResult)(results[0]));
 }