CaseActivityRepositoryCreateCaseActivityProcess Method |
Create a new Caseactivity 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 Guid CreateCaseActivityProcess(
Uri oDataUri,
string packageName,
string processName,
string description,
string xml,
bool standard = false,
DateTime? startDate = null,
DateTime? endDate = null,
string accessCode = "",
string cultureName = ""
)
Public Function CreateCaseActivityProcess (
oDataUri As Uri,
packageName As String,
processName As String,
description As String,
xml As String,
Optional standard As Boolean = false,
Optional startDate As DateTime? = Nothing,
Optional endDate As DateTime? = Nothing,
Optional accessCode As String = "",
Optional cultureName As String = ""
) As Guid
public:
Guid CreateCaseActivityProcess(
Uri^ oDataUri,
String^ packageName,
String^ processName,
String^ description,
String^ xml,
bool standard = false,
Nullable<DateTime> startDate = nullptr,
Nullable<DateTime> endDate = nullptr,
String^ accessCode = L"",
String^ cultureName = L""
)
member CreateCaseActivityProcess :
oDataUri : Uri *
packageName : string *
processName : string *
description : string *
xml : string *
?standard : bool *
?startDate : Nullable<DateTime> *
?endDate : Nullable<DateTime> *
?accessCode : string *
?cultureName : string
(* Defaults:
let _standard = defaultArg standard false
let _startDate = defaultArg startDate null
let _endDate = defaultArg endDate null
let _accessCode = defaultArg accessCode ""
let _cultureName = defaultArg cultureName ""
*)
-> Guid
Parameters
- oDataUri Uri
- The OData Uri.
- packageName String
- The package name to add the process to.
- processName String
- The process name.
- description String
- The process description.
- xml String
- The case activity xml.
- standard Boolean (Optional)
- true if the workflow is standard.
- startDate NullableDateTime (Optional)
[Missing <param name="startDate"/> documentation for "M:Scanjour.Workflow4.Web.Services.Repositories.CaseActivityRepository.CreateCaseActivityProcess(System.Uri,System.String,System.String,System.String,System.String,System.Boolean,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,System.String)"]
- endDate NullableDateTime (Optional)
[Missing <param name="endDate"/> documentation for "M:Scanjour.Workflow4.Web.Services.Repositories.CaseActivityRepository.CreateCaseActivityProcess(System.Uri,System.String,System.String,System.String,System.String,System.Boolean,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,System.String)"]
- accessCode String (Optional)
[Missing <param name="accessCode"/> documentation for "M:Scanjour.Workflow4.Web.Services.Repositories.CaseActivityRepository.CreateCaseActivityProcess(System.Uri,System.String,System.String,System.String,System.String,System.Boolean,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,System.String)"]
- cultureName String (Optional)
[Missing <param name="cultureName"/> documentation for "M:Scanjour.Workflow4.Web.Services.Repositories.CaseActivityRepository.CreateCaseActivityProcess(System.Uri,System.String,System.String,System.String,System.String,System.Boolean,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,System.String)"]
Return Value
GuidThe Guid of the created process.
See Also