IT Hit User File System
Updates this folder info in the remote storage.
Namespace:
ITHit.FileSystem
Assembly:
ITHit.FileSystem (in ITHit.FileSystem.dll) Version: 8.3.27213.0
Syntax Task<IFolderMetadata> WriteAsync(
IFolderMetadata metadata,
IOperationContext operationContext,
IInSyncResultContext inSyncResultContext,
CancellationToken cancellationToken = null
)
Function WriteAsync (
metadata As IFolderMetadata,
operationContext As IOperationContext,
inSyncResultContext As IInSyncResultContext,
Optional cancellationToken As CancellationToken = Nothing
) As Task(Of IFolderMetadata)
Task<IFolderMetadata^>^ WriteAsync(
IFolderMetadata^ metadata,
IOperationContext^ operationContext,
IInSyncResultContext^ inSyncResultContext,
CancellationToken cancellationToken = nullptr
)
abstract WriteAsync :
metadata : IFolderMetadata *
operationContext : IOperationContext *
inSyncResultContext : IInSyncResultContext *
?cancellationToken : CancellationToken
(* Defaults:
let _cancellationToken = defaultArg cancellationToken null
*)
-> Task<IFolderMetadata>
Parameters
- metadata
- Type: ITHit.FileSystemIFolderMetadata
- operationContext
- Type: ITHit.FileSystemIOperationContext
Provides information about the environment. - inSyncResultContext
- Type: ITHit.FileSystemIInSyncResultContext
If the SetInSync property is set to true
the item is marked as in-sync. Otherwise the item
remains in the not in-sync state. The SetInSync property is true by default.
- cancellationToken (Optional)
- Type: System.ThreadingCancellationToken
The token to monitor for cancellation requests.
Return Value
Type:
TaskIFolderMetadata
Updated item.
In the returned data set the following fields:
- Medatdata eTag. The Engine will store it to determine if the item metadata should be updated.
Remarks
If this method completes without exceptions and the SetInSync property
of the inSyncResultContext parameter is set to true
the item is marked as in-sync when the operation completes.
Otherwise, the item is left in the not in-sync state.
Setting the SetInSync property of the inSyncResultContext
parameter to false
has the same affect as throwing an exception inside this method.
See Also