CaseActivityRepositoryUpdateCaseActivityProcess Method |
Update and existing case activity 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 void UpdateCaseActivityProcess(
Uri oDataUri,
string processGuid,
string processName = "",
string description = "",
string xml = "",
bool standard = false,
DateTime? startDate = null,
DateTime? endDate = null,
string accessCode = "",
string cultureName = ""
)
Public Sub UpdateCaseActivityProcess (
oDataUri As Uri,
processGuid As String,
Optional processName As String = "",
Optional description As String = "",
Optional 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 = ""
)
public:
void UpdateCaseActivityProcess(
Uri^ oDataUri,
String^ processGuid,
String^ processName = L"",
String^ description = L"",
String^ xml = L"",
bool standard = false,
Nullable<DateTime> startDate = nullptr,
Nullable<DateTime> endDate = nullptr,
String^ accessCode = L"",
String^ cultureName = L""
)
member UpdateCaseActivityProcess :
oDataUri : Uri *
processGuid : string *
?processName : string *
?description : string *
?xml : string *
?standard : bool *
?startDate : Nullable<DateTime> *
?endDate : Nullable<DateTime> *
?accessCode : string *
?cultureName : string
(* Defaults:
let _processName = defaultArg processName ""
let _description = defaultArg description ""
let _xml = defaultArg xml ""
let _standard = defaultArg standard false
let _startDate = defaultArg startDate null
let _endDate = defaultArg endDate null
let _accessCode = defaultArg accessCode ""
let _cultureName = defaultArg cultureName ""
*)
-> unit
Parameters
- oDataUri Uri
- The OData Uri.
- processGuid String
- The process Guid.
- processName String (Optional)
- The process name.
- description String (Optional)
- The process description.
- xml String (Optional)
- 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.UpdateCaseActivityProcess(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.UpdateCaseActivityProcess(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.UpdateCaseActivityProcess(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.UpdateCaseActivityProcess(System.Uri,System.String,System.String,System.String,System.String,System.Boolean,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,System.String)"]
See Also