UserTaskRepositoryGetSmartTaskAttachments Method |
Gets the user task attachment record Id's. Be default it gets all documents, by using the flags you can exclude some documents.
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 string[] GetSmartTaskAttachments(
Uri oDataUri,
string taskId,
bool includeReferenceDocuments = true,
bool includeAnswerDocuments = true
)
Public Function GetSmartTaskAttachments (
oDataUri As Uri,
taskId As String,
Optional includeReferenceDocuments As Boolean = true,
Optional includeAnswerDocuments As Boolean = true
) As String()
public:
array<String^>^ GetSmartTaskAttachments(
Uri^ oDataUri,
String^ taskId,
bool includeReferenceDocuments = true,
bool includeAnswerDocuments = true
)
member GetSmartTaskAttachments :
oDataUri : Uri *
taskId : string *
?includeReferenceDocuments : bool *
?includeAnswerDocuments : bool
(* Defaults:
let _includeReferenceDocuments = defaultArg includeReferenceDocuments true
let _includeAnswerDocuments = defaultArg includeAnswerDocuments true
*)
-> string[]
Parameters
- oDataUri Uri
- The Odata Uri.
- taskId String
- The user task id.
- includeReferenceDocuments Boolean (Optional)
- Flag to include/exclude reference documents.
- includeAnswerDocuments Boolean (Optional)
- Flag to include/exclude answer documents.
Return Value
StringThe attachment id's.
See Also