Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Retrieves or sets the optional parameters to pass to the module.
Namespace: Microsoft.Storage
Assembly: srmlib (in srmlib.dll)
Syntax
object[] Parameters { get; set; }
property array<Object^>^ Parameters {
array<Object^>^ get();
void set(array<Object^>^ value);
}
abstract Parameters : Object[] with get, set
Property Parameters As Object()
Property Value
Type: System.Object[]
Returns a Object containing an array of parameters to pass to the module. Each element of the SAFEARRAY is a variant of type VT_BSTR. Set the bstrVal member of the variant to the parameter
Parameters are of the form, "parameter=value".
Remarks
There is no limit to length of the parameter name or value, nor is there a limit the number of parameters that you can specify. Specifying a parameter without a value is valid (for example, "parameter=").
The parameters are included in the module definition that FSRM passes to the module's OnLoad implementation.
See Also
IFsrmPipelineModuleDefinition Interface
Microsoft.Storage Namespace
Return to top