DAVClientaddDAVItem Method |
Adds a DAV item to the server
Namespace: ARPDev.DAVLIBAssembly: ARPDev.DAVLIB (in ARPDev.DAVLIB.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic DAVResult addDAVItem(
ref DAVItem NewItem,
bool bIsUpdate = false
)
Public Function addDAVItem (
ByRef NewItem As DAVItem,
Optional bIsUpdate As Boolean = false
) As DAVResult
public:
DAVResult addDAVItem(
DAVItem^% NewItem,
bool bIsUpdate = false
)
member addDAVItem :
NewItem : DAVItem byref *
?bIsUpdate : bool
(* Defaults:
let _bIsUpdate = defaultArg bIsUpdate false
*)
-> DAVResult
Parameters
- NewItem
- Type: ARPDev.DAVLIBDAVItem
Item to be added to server - bIsUpdate (Optional)
- Type: SystemBoolean
Specifies if the item should be added or if it is an update to an existing item
Return Value
Type:
DAVResultDAVResult indicating success or failure.
Remarks
See Also