In This Article

IParameterDefinitionCollection Interface

Provides the base requirements for a collection of IParameterDefinition objects.

public interface IParameterDefinitionCollection : IObservableCollection<IParameterDefinition>

Properties

this[string]

Gets the IParameterDefinition with the specified name.

[C#] In C#, this property is the indexer for the IParameterDefinitionCollection interface.

IParameterDefinition this[string name] { get; }
Parameter Type Description
name string

The name of the IParameterDefinition to return.

Property Value

IParameterDefinition:

The IParameterDefinition with the specified name.

Inherited Members