ProcessDefinitionRepositoryCopyProcess Method |
Copy a process.
Namespace: Scanjour.Workflow4.Web.Services.RepositoriesAssembly: Scanjour.Workflow4.Web.Services (in Scanjour.Workflow4.Web.Services.dll) Version: 24.5.0.0 (24.5.0.0)
Syntaxpublic static Guid CopyProcess(
Uri oDataUri,
string processGuid,
string processName = "",
string processDescription = "",
string demandProcessType = null,
Guid? demandNewGuid = null
)
Public Shared Function CopyProcess (
oDataUri As Uri,
processGuid As String,
Optional processName As String = "",
Optional processDescription As String = "",
Optional demandProcessType As String = Nothing,
Optional demandNewGuid As Guid? = Nothing
) As Guid
public:
static Guid CopyProcess(
Uri^ oDataUri,
String^ processGuid,
String^ processName = L"",
String^ processDescription = L"",
String^ demandProcessType = nullptr,
Nullable<Guid> demandNewGuid = nullptr
)
static member CopyProcess :
oDataUri : Uri *
processGuid : string *
?processName : string *
?processDescription : string *
?demandProcessType : string *
?demandNewGuid : Nullable<Guid>
(* Defaults:
let _processName = defaultArg processName ""
let _processDescription = defaultArg processDescription ""
let _demandProcessType = defaultArg demandProcessType null
let _demandNewGuid = defaultArg demandNewGuid null
*)
-> Guid
Parameters
- oDataUri Uri
- The Odata Uri.
- processGuid String
- The process Guid
- processName String (Optional)
- The name of the new process
- processDescription String (Optional)
- The description of the new process
- demandProcessType String (Optional)
[Missing <param name="demandProcessType"/> documentation for "M:Scanjour.Workflow4.Web.Services.Repositories.ProcessDefinitionRepository.CopyProcess(System.Uri,System.String,System.String,System.String,System.String,System.Nullable{System.Guid})"]
- demandNewGuid NullableGuid (Optional)
[Missing <param name="demandNewGuid"/> documentation for "M:Scanjour.Workflow4.Web.Services.Repositories.ProcessDefinitionRepository.CopyProcess(System.Uri,System.String,System.String,System.String,System.String,System.Nullable{System.Guid})"]
Return Value
GuidThe process Guid.
See Also