IFsrmClassifierModuleDefinition.PropertiesUsed Property

 

Sets or retrieves the list of property names that the classifier inspects.

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

Syntax

object[] PropertiesUsed { get; set; }
property array<Object^>^ PropertiesUsed {
    array<Object^>^ get();
    void set(array<Object^>^ value);
}
abstract PropertiesUsed : Object[] with get, set
Property PropertiesUsed As Object()

Property Value

Type: System.Object[]

A Object containing an array of property names that this classifier inspects. Each element of the SAFEARRAY is a variant of type VT_BSTR. Set the bstrVal member of the variant to the property name.

Remarks

The classifier may inspect the properties to determine the property value or if it should perform other processes.

The list is optional. Specify a list of properties only if you want to limit the properties that this classifier can inspect; otherwise, if the list is empty, the classifier can inspect any property in the file.

See Also

IFsrmClassifierModuleDefinition Interface
Microsoft.Storage Namespace

Return to top