DAVClientdeleteDAVItem Method |
Deletes a DAV item on the server
Namespace: ARPDev.DAVLIBAssembly: ARPDev.DAVLIB (in ARPDev.DAVLIB.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic DAVResult deleteDAVItem(
ref DAVItem targetItem
)
Public Function deleteDAVItem (
ByRef targetItem As DAVItem
) As DAVResult
public:
DAVResult deleteDAVItem(
DAVItem^% targetItem
)
member deleteDAVItem :
targetItem : DAVItem byref -> DAVResult
Parameters
- targetItem
- Type: ARPDev.DAVLIBDAVItem
Item to delete.
Return Value
Type:
DAVResultDAVResult indicating success or failure.
RemarksThe Target URI is passed in by reference so that we can populate any errors into its URI structure. This means that we need to clone it any manipulate it, then set the values back.
See Also