/// <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);
 }
 /// <remarks/>
 public void moveAsync(authentication authentication, identifier identifier, moveParameters moveParameters, workflowconfiguration workflowConfiguration)
 {
     this.moveAsync(authentication, identifier, moveParameters, workflowConfiguration, null);
 }
 /// <remarks/>
 public void copyAsync(authentication authentication, identifier identifier, copyParameters copyParameters, workflowconfiguration workflowConfiguration)
 {
     this.copyAsync(authentication, identifier, copyParameters, workflowConfiguration, null);
 }
 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]));
 }
        public static string printWorkflowConfiguration(workflowconfiguration config)
        {
            string val = "<ul>";

            if (config != null)
            {
                val += "<li>workflowComments = " + config.workflowComments + "</li>";
                val += "<li>workflowDefinitionId = " + config.workflowDefinitionId + "</li>";
                val += "<li>workflowDefinitionPath = " + config.workflowDefinitionPath + "</li>";
                val += "<li>workflowName = " + config.workflowName + "</li>";
                val += "<li>workflowStepConfigurations = " + config.workflowStepConfigurations + "</li>";
            }
            else
            {
                val += "<li>null</li>";
            }


            val += "</ul>";
            return val;
        }