In This Article

IParameterDefinitionCollection Interface

Provides the base requirements for a collection of IParameterDefinition objects.

public interface IParameterDefinitionCollection : IObservableCollection<IParameterDefinition>, IList<IParameterDefinition>, ICollection<IParameterDefinition>, IEnumerable<IParameterDefinition>, IEnumerable

Properties

Item[String, Boolean]

Gets the IParameterDefinition with the specified name.

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

IParameterDefinition this[string name, bool caseSensitive] { get; }
Parameter Type Description
name String

The name of the IParameterDefinition to return.

caseSensitive Boolean

Whether to perform a case-sensitive name search.

Property Value

IParameterDefinition:

The IParameterDefinition with the specified name.

Inherited Members

Extension Methods