EngineMacServerNotifications 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.Mac
Assembly:
ITHit.FileSystem.Mac (in ITHit.FileSystem.Mac.dll) Version: 1.0.8837.18647
Syntax public IServerCollectionNotifications ServerNotifications(
string userFileSystemPath,
ILogger logger = null
)
Public Function ServerNotifications (
userFileSystemPath As String,
Optional logger As ILogger = Nothing
) As IServerCollectionNotifications
public:
virtual IServerCollectionNotifications^ ServerNotifications(
String^ userFileSystemPath,
ILogger^ logger = nullptr
) sealed
abstract ServerNotifications :
userFileSystemPath : string *
?logger : ILogger
(* Defaults:
let _logger = defaultArg logger null
*)
-> IServerCollectionNotifications
override ServerNotifications :
userFileSystemPath : string *
?logger : ILogger
(* Defaults:
let _logger = defaultArg logger null
*)
-> IServerCollectionNotifications
Parameters
- userFileSystemPath
- 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