IFsrmStorageModuleDefinition.UpdatesFileContent Property

 

Determines whether the module updates the contents of the file.

Namespace:   Microsoft.Storage
Assembly:  srmlib (in srmlib.dll)

Syntax

bool UpdatesFileContent { get; set; }
property bool UpdatesFileContent {
    bool get();
    void set(bool value);
}
abstract UpdatesFileContent : bool with get, set
Property UpdatesFileContent As Boolean

Property Value

Type: System.Boolean

A Boolean that is set to VARIANT_TRUE if the module updates the contents of the file; otherwise, VARIANT_FALSE. The default is VARIANT_FALSE.

Remarks

This property is read/write.

Setting this property to VARIANT_TRUE does not require that the StorageType property to be set to FsrmStorageModuleType_InFile. For example, you can set this property to VARIANT_TRUE if you need to update the file to let another process know that you have processed the file.

See Also

IFsrmStorageModuleDefinition Interface
Microsoft.Storage Namespace

Return to top