Click or drag to resize

WebDavSessionGetItemAsync Method (Uri, PropertyName, IDictionaryString, String, CancellationToken)

IT Hit WebDAV Classes Reference
Returns IHierarchyItem corresponding to path.

Namespace:  ITHit.WebDAV.Client
Assembly:  ITHit.WebDAV.Client (in ITHit.WebDAV.Client.dll) Version: 6.0.4052-Beta
Syntax
public Task<IHierarchyItem> GetItemAsync(
	Uri path,
	PropertyName[] names,
	IDictionary<string, string> headers = null,
	CancellationToken cancellationToken = null
)

Parameters

path
Type: SystemUri
Path to the item.
names
Type: ITHit.WebDAV.ClientPropertyName
Properties that will be retrieved for each item returned by this method.
headers (Optional)
Type: System.Collections.GenericIDictionaryString, String
Request headers.
cancellationToken (Optional)
Type: System.ThreadingCancellationToken
Propagates notification that operations should be canceled.

Return Value

Type: TaskIHierarchyItem
Item corresponding to requested path.

Implements

ISessionGetItemAsync(Uri, PropertyName, IDictionaryString, String, CancellationToken)
Exceptions
ExceptionCondition
UnauthorizedExceptionIncorrect credentials provided or insufficient permissions to access the requested item.
NotFoundExceptionThe requested folder doesn't exist on the server.
ForbiddenExceptionThe server refused to fulfill the request.
WebDavExceptionUnexpected error occurred.
See Also