Example #1
0
 /// <inheritdoc />
 public Task <IWebDavResult> RefreshLockAsync(string path, IfHeader ifHeader, TimeoutHeader timeoutHeader, CancellationToken cancellationToken)
 {
     if (_lockHandler == null)
     {
         throw new NotSupportedException();
     }
     return(_lockHandler.RefreshLockAsync(path, ifHeader, timeoutHeader, cancellationToken));
 }