ServerNotificationsCreateAsync Method |
IT Hit User File System
Creates new file and folder placeholders in the user file system in this folder.
Namespace:
ITHit.FileSystem.Mac
Assembly:
ITHit.FileSystem.Mac (in ITHit.FileSystem.Mac.dll) Version: 1.0.8837.18647
Syntax public Task<OperationResult> CreateAsync(
IFileSystemItemMetadata[] newItemsInfo
)
Public Function CreateAsync (
newItemsInfo As IFileSystemItemMetadata()
) As Task(Of OperationResult)
public:
virtual Task<OperationResult^>^ CreateAsync(
array<IFileSystemItemMetadata^>^ newItemsInfo
) sealed
abstract CreateAsync :
newItemsInfo : IFileSystemItemMetadata[] -> Task<OperationResult>
override CreateAsync :
newItemsInfo : IFileSystemItemMetadata[] -> Task<OperationResult>
Parameters
- newItemsInfo
- Type: ITHit.FileSystemIFileSystemItemMetadata
Array of new files and folders.
Return Value
Type:
TaskOperationResultOperation result, indicating if the operation was successfull and how many items was affected. If operation failed contains a reason for the failure.
Implements
IServerNotificationsCreateAsync(IFileSystemItemMetadata)Remarks
Call this method from your remote storage monitor when new items are created in the remote storage.
See Also