IServerNotificationsCreateAsync Method |
IT Hit User File System
Creates new file and folder placeholders in the user file system in this folder.
Namespace:
ITHit.FileSystem
Assembly:
ITHit.FileSystem (in ITHit.FileSystem.dll) Version: 7.1.23701.0
SyntaxTask<uint> CreateAsync(
IFileSystemItemMetadata[] newItemsInfo
)
Function CreateAsync (
newItemsInfo As IFileSystemItemMetadata()
) As Task(Of UInteger)
Task<unsigned int>^ CreateAsync(
array<IFileSystemItemMetadata^>^ newItemsInfo
)
abstract CreateAsync :
newItemsInfo : IFileSystemItemMetadata[] -> Task<uint32>
Parameters
- newItemsInfo
- Type: ITHit.FileSystemIFileSystemItemMetadata
Array of new files and folders.
Return Value
Type:
TaskUInt32Number of items created.
Remarks
Call this method from your remote storage monitor when new items are created in the remote storage.
Because of the on-demand loading, the parent folder may not exist in the user file system.
In this case new items are not created and this method method returns 0.
See Also