DropdownParameterAttribute
Namespace: Lithnet.Ecma2Framework
Defines a configuration parameter that is rendered as a drop down control in the management agent's configuration pages
public class DropdownParameterAttribute : DataParameterAttribute
Inheritance Object → Attribute → ParameterAttribute → DataParameterAttribute → DropdownParameterAttribute
Properties
Extensible
Gets a boolean value that indicates if users should be able to specify their own value in addition to the displayed values
public bool Extensible { get; }
Property Value
DisplayedValues
Gets the list of values that should be displayed in the drop down list
public String[] DisplayedValues { get; }
Property Value
Name
Gets the name of the parameter, as shown to the user on the MIM configuration page
public string Name { get; }
Property Value
TypeId
public object TypeId { get; }
Property Value
Constructors
DropdownParameterAttribute(String, Boolean, String[])
Initializes a new instance of the DropdownParameterAttribute class
public DropdownParameterAttribute(string name, bool extensible, String[] displayedValues)
Parameters
name
String
The name of the parameter, as shown to the user on the MIM configuration page
extensible
Boolean
A boolean value that indicates if users should be able to specify their own value in addition to the displayed values
displayedValues
String[]
The list of values that should be displayed in the drop down list
Last updated