コード例 #1
0
 /// <remarks/>
 public void copyAsync(authentication authentication, identifier identifier, copyParameters copyParameters, workflowconfiguration workflowConfiguration)
 {
     this.copyAsync(authentication, identifier, copyParameters, workflowConfiguration, null);
 }
コード例 #2
0
 /// <remarks/>
 public void copyAsync(authentication authentication, identifier identifier, copyParameters copyParameters, workflowconfiguration workflowConfiguration, object userState)
 {
     if ((this.copyOperationCompleted == null))
     {
         this.copyOperationCompleted = new System.Threading.SendOrPostCallback(this.OncopyOperationCompleted);
     }
     this.InvokeAsync("copy", new object[] {
                 authentication,
                 identifier,
                 copyParameters,
                 workflowConfiguration}, this.copyOperationCompleted, userState);
 }
コード例 #3
0
 public operationResult copy(authentication authentication, identifier identifier, copyParameters copyParameters, workflowconfiguration workflowConfiguration)
 {
     object[] results = this.Invoke("copy", new object[] {
                 authentication,
                 identifier,
                 copyParameters,
                 workflowConfiguration});
     return ((operationResult)(results[0]));
 }