IFsrmPipelineModuleDefinition.NeedsFileContent Property

 

Gets or sets a value that determines whether the module needs to read the contents of the file.

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

Syntax

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

Property Value

Type: System.Boolean

Set to true if the module needs to read the contents of the file; otherwise, false. The default is false.

Remarks

If the NeedsFileContent property value is VARIANT_TRUE, FSRM will provide a stream for a file's contents to the module. This may be necessary if a classification module needs to analyze the contents of the file to determine the property values or if a storage module handles property values embedded in the file's contents

See Also

IFsrmPipelineModuleDefinition Interface
Microsoft.Storage Namespace

Return to top