Share via


IFsrmFileManagementJob.Parameters Property

 

Retrieves or sets the parameters for the file management job.

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 the length of the parameter name or value, nor is there a limit to the number of parameters that you can specify. Specifying a parameter without a value is valid (for example, "parameter=").

See Also

IFsrmFileManagementJob Interface
Microsoft.Storage Namespace

Return to top