Extends
Methods
-
inherited AddListener(sEventName, fCallback, oContext)
AddListener -
Name Type Description sEventNamestring fCallbackfunction oContextobject optional -
inherited CreateFolderAsync(sPath, aProperties, fCallback)
CreateFolderAsync -
Creates folder corresponding to path.
Name Type Description sPathstring Path to the resource. aPropertiesArray.<ITHit.WebDAV.Client.PropertyName> Additional properties requested from server. Default is empty array. fCallbackITHit.WebDAV.Client.WebDavSession~CreateFolderAsyncCallback Function to call when operation is completed. -
inherited OpenFileAsync(sPath, aProperties, fCallback) → {ITHit.WebDAV.Client.Request}
OpenFileAsync -
Load File object corresponding to path.
Name Type Description sPathstring Path to the file. aPropertiesArray.<ITHit.WebDAV.Client.PropertyName> Additional properties requested from server. Default is empty array. fCallbackITHit.WebDAV.Client.WebDavSession~OpenFileAsyncCallback Function to call when operation is completed. Returns:
ITHit.WebDAV.Client.Request Request object. -
inherited OpenFolderAsync(sPath, aProperties, fCallback)
OpenFolderAsync -
Returns Folder object corresponding to path.
Name Type Description sPathstring Path to the folder. aPropertiesArray.<ITHit.WebDAV.Client.PropertyName> Additional properties requested from server. Default is empty array. fCallbackITHit.WebDAV.Client.WebDavSession~OpenFolderAsyncCallback Function to call when operation is completed. Examples
-
inherited OpenItemAsync(sPath, aProperties, fCallback)
OpenItemAsync -
Returns HierarchyItem object corresponding to path.
Name Type Description sPathstring Path to the resource. aPropertiesArray.<ITHit.WebDAV.Client.PropertyName> Additional properties requested from server. Default is empty array. fCallbackITHit.WebDAV.Client.WebDavSession~OpenItemAsyncCallback Function to call when operation is completed. -
inherited RemoveListener(sEventName, fCallback, oContext)
RemoveListener -
Name Type Description sEventNamestring fCallbackfunction oContextobject optional
Events
-
inherited OnBeforeRequestSend
OnBeforeRequestSend -
The OnBeforeRequestSend event is fired before request is being submitted to server and provides all information that is used when creating the request such as URL, HTTP verb, headers and request body.
Properties:
Name Type Description Methodstring Request method Hrefstring Request absolute path Headersobject Key-value object with headers Bodystring Request Body Examples
-
inherited OnResponse
OnResponse -
The OnResponse event fires when the data is received from server. In your event handler you can update any data received from server.
Properties:
Name Type Description Statusnumber Response status code StatusDescriptionstring Response status description Headersobject Key-value object with headers Bodystring Response Body Examples