IFsrmPipelineModuleDefinition.SupportedExtensions Property
Retrieves or sets the list of file extensions supported by this module.
Namespace: Microsoft.Storage
Assembly: srmlib (in srmlib.dll)
Syntax
object[] SupportedExtensions { get; set; }
property array<Object^>^ SupportedExtensions {
array<Object^>^ get();
void set(array<Object^>^ value);
}
abstract SupportedExtensions : Object[] with get, set
Property SupportedExtensions As Object()
Property Value
Type: System.Object[]
Returns a Object containing an array of file extensions that this module supports. Each element of the SAFEARRAY is a variant of type VT_BSTR. Set the bstrVal member of the variant to the extension.
Remarks
This property is optional. Set this property only if you support a limited number of file types. FSRM uses the list of extensions to determine the files that it sends to the module. If the list is empty, FSRM will send the module all files.
See Also
IFsrmPipelineModuleDefinition Interface
Microsoft.Storage Namespace
Return to top