RuntimeDefinedParameterDictionary Class

Definition

Represents a collection of runtime-defined parameters that are keyed based on the name of the parameter.

public ref class RuntimeDefinedParameterDictionary : System::Collections::Generic::Dictionary<System::String ^, System::Management::Automation::RuntimeDefinedParameter ^>
[System.Serializable]
public class RuntimeDefinedParameterDictionary : System.Collections.Generic.Dictionary<string,System.Management.Automation.RuntimeDefinedParameter>
public class RuntimeDefinedParameterDictionary : System.Collections.Generic.Dictionary<string,System.Management.Automation.RuntimeDefinedParameter>
[<System.Serializable>]
type RuntimeDefinedParameterDictionary = class
    inherit Dictionary<string, RuntimeDefinedParameter>
type RuntimeDefinedParameterDictionary = class
    inherit Dictionary<string, RuntimeDefinedParameter>
Public Class RuntimeDefinedParameterDictionary
Inherits Dictionary(Of String, RuntimeDefinedParameter)
Inheritance
RuntimeDefinedParameterDictionary
Attributes

Remarks

Instances of RuntimeDefinedParameterDictionary should be returned to cmdlet implementations of GetDynamicParameters().

It is permitted to subclass RuntimeDefinedParameterDictionary but there is no established scenario for doing this, nor has it been tested.

Constructors

RuntimeDefinedParameterDictionary()

Constructs a new instance of a runtime-defined parameter dictionary.

Properties

Data

Gets or sets private data associated with the runtime-defined parameters.

HelpFile

Gets or sets the help file that documents these parameters.

Applies to

See also