EngineWindowsServerNotifications Method (String, 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 path to apply changes sent by the remote storage.
Namespace:
ITHit.FileSystem.Windows
Assembly:
ITHit.FileSystem.Windows (in ITHit.FileSystem.Windows.dll) Version: 8.2.27026.0
Syntax public override IServerCollectionNotifications ServerNotifications(
string userFileSystemPath = null,
ILogger logger = null
)
Public Overrides Function ServerNotifications (
Optional userFileSystemPath As String = Nothing,
Optional logger As ILogger = Nothing
) As IServerCollectionNotifications
public:
virtual IServerCollectionNotifications^ ServerNotifications(
String^ userFileSystemPath = nullptr,
ILogger^ logger = nullptr
) override
abstract ServerNotifications :
?userFileSystemPath : string *
?logger : ILogger
(* Defaults:
let _userFileSystemPath = defaultArg userFileSystemPath null
let _logger = defaultArg logger null
*)
-> IServerCollectionNotifications
override ServerNotifications :
?userFileSystemPath : string *
?logger : ILogger
(* Defaults:
let _userFileSystemPath = defaultArg userFileSystemPath null
let _logger = defaultArg logger null
*)
-> IServerCollectionNotifications
Parameters
- userFileSystemPath (Optional)
- Type: SystemString
Path in the user file system. Root of the user file system is used if null is passed. - logger (Optional)
- Type: ITHit.FileSystemILogger
Logger.
Return Value
Type:
IServerCollectionNotificationsImplements
IEngineServerNotifications(String, 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