EngineServerNotifications Method (Byte, ILogger) |
IT Hit User File System
Creates, updates, moves and deletes files and folders in the user file system.
Use object returned by this method by remote storage ID to apply changes sent by the remote storage.
Namespace:
ITHit.FileSystem
Assembly:
ITHit.FileSystem (in ITHit.FileSystem.dll) Version: 8.3.27213.0
Syntax public abstract IServerCollectionNotifications ServerNotifications(
byte[] remoteStorageItemId,
ILogger logger = null
)
Public MustOverride Function ServerNotifications (
remoteStorageItemId As Byte(),
Optional logger As ILogger = Nothing
) As IServerCollectionNotifications
public:
virtual IServerCollectionNotifications^ ServerNotifications(
array<unsigned char>^ remoteStorageItemId,
ILogger^ logger = nullptr
) abstract
abstract ServerNotifications :
remoteStorageItemId : byte[] *
?logger : ILogger
(* Defaults:
let _logger = defaultArg logger null
*)
-> IServerCollectionNotifications
Parameters
- remoteStorageItemId
- Type: SystemByte
- logger (Optional)
- Type: ITHit.FileSystemILogger
Logger.
Return Value
Type:
IServerCollectionNotificationsImplements
IEngineServerNotifications(Byte, ILogger)Remarks
When remote storage notifies the client about changes (via web sockets or other channel),
call methods of the interface returned by this method.
See Also