IFsrmPropertyDefinition.Parameters Property
Retrieves or sets the parameters for the property definition.
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[]
A Object containing A SAFEARRAY that contains one or more parameters for the property definition. 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".
See Also
IFsrmPropertyDefinition Interface
Microsoft.Storage Namespace
Return to top