WebDavSessionUnlockAsync Method
IT Hit WebDAV Classes Reference
Unlocks an item.
Namespace:
ITHit.WebDAV.Client
Assembly:
ITHit.WebDAV.Client (in ITHit.WebDAV.Client.dll) Version: 6.0.4052-Beta
Syntax public Task UnlockAsync(
Uri item,
LockUriTokenPair[] lockTokens,
IDictionary<string, string> headers = null,
CancellationToken cancellationToken = null
)
Public Function UnlockAsync (
item As Uri,
lockTokens As LockUriTokenPair(),
Optional headers As IDictionary(Of String, String) = Nothing,
Optional cancellationToken As CancellationToken = Nothing
) As Task
public:
Task^ UnlockAsync(
Uri^ item,
array<LockUriTokenPair^>^ lockTokens,
IDictionary<String^, String^>^ headers = nullptr,
CancellationToken cancellationToken = nullptr
)
member UnlockAsync :
item : Uri *
lockTokens : LockUriTokenPair[] *
?headers : IDictionary<string, string> *
?cancellationToken : CancellationToken
(* Defaults:
let _headers = defaultArg headers null
let _cancellationToken = defaultArg cancellationToken null
*)
-> Task
Parameters
- item
- Type: SystemUri
URI of the item to be unlocked. - lockTokens
- Type: ITHit.WebDAV.ClientLockUriTokenPair
Lock-tokens to be used for unlocking. - headers (Optional)
- Type: System.Collections.GenericIDictionaryString, String
Request headers. - cancellationToken (Optional)
- Type: System.ThreadingCancellationToken
Propagates notification that operations should be canceled.
Return Value
Type:
Task[Missing <returns> documentation for "M:ITHit.WebDAV.Client.WebDavSession.UnlockAsync(System.Uri,ITHit.WebDAV.Client.LockUriTokenPair[],System.Collections.Generic.IDictionary{System.String,System.String},System.Threading.CancellationToken)"]
See Also