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 ObjectAttributeParameterAttributeDataParameterAttributeDropdownParameterAttribute

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

Boolean

DisplayedValues

Gets the list of values that should be displayed in the drop down list

public String[] DisplayedValues { get; }

Property Value

String[]

Name

Gets the name of the parameter, as shown to the user on the MIM configuration page

public string Name { get; }

Property Value

String

TypeId

public object TypeId { get; }

Property Value

Object

Constructors

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