ChangeEventItem Constructor |
IT Hit User File System
Creates instance of this class.
Namespace:
ITHit.FileSystem
Assembly:
ITHit.FileSystem (in ITHit.FileSystem.dll) Version: 8.3.27213.0
Syntax public ChangeEventItem(
byte[] remoteStorageItemId,
string path,
Nullable<FileSystemItemType> itemType,
IFileSystemItemMetadata metadata,
string newPath,
ICustomData properties
)
Public Sub New (
remoteStorageItemId As Byte(),
path As String,
itemType As Nullable(Of FileSystemItemType),
metadata As IFileSystemItemMetadata,
newPath As String,
properties As ICustomData
)
public:
ChangeEventItem(
array<unsigned char>^ remoteStorageItemId,
String^ path,
Nullable<FileSystemItemType> itemType,
IFileSystemItemMetadata^ metadata,
String^ newPath,
ICustomData^ properties
)
new :
remoteStorageItemId : byte[] *
path : string *
itemType : Nullable<FileSystemItemType> *
metadata : IFileSystemItemMetadata *
newPath : string *
properties : ICustomData -> ChangeEventItem
Parameters
- remoteStorageItemId
- Type: SystemByte
Remote storage item ID which uniquely identifies file or folder withing your user file system. - path
- Type: SystemString
File system item path. For creation, population, update and delete operation this is an item path. For move operation this is the source path. - itemType
- Type: SystemNullableFileSystemItemType
Item type - file or folder. Null if type can not be determined. - metadata
- Type: ITHit.FileSystemIFileSystemItemMetadata
Item metadata. Null - for delete operation. - newPath
- Type: SystemString
Target file path. Provided only in case of move operation. Null for all other operations. - properties
- Type: ITHit.FileSystemICustomData
Custom data associated with this item.
See Also