Click or drag to resize

IClientNotifications Interface

IT Hit User File System
Represents client messages that must be to be sent to the remote storage, such as lock and unlock commands.

Namespace:  ITHit.FileSystem.Windows
Assembly:  ITHit.FileSystem.Windows (in ITHit.FileSystem.Windows.dll) Version: 8.1.26727.0-Beta2
Syntax
public interface IClientNotifications

The IClientNotifications type exposes the following members.

Methods
  NameDescription
Public methodGetLockModeAsync
Gets the lock mode indicating if the item was locked manually or automatically or None if the item is not locked.
Public methodLockAsync
Locks the file in the remote storage. When this method is called the Engine calls the LockAsync(LockMode, IOperationContext, CancellationToken) method.
Public methodUnlockAsync
Unlocks the file in the remote storage.
Top
Remarks

Call methods of this class when the client needs to notify the remote storage about the changes made in the user file system.

Methods of this interface call the GetFileSystemItemAsync(Byte, FileSystemItemType, IContext, ILogger) method and than methods of the IFile and IFolder interfaces.

See Also