In This Article

IFunctionDefinitionCollection Interface

Provides the base requirements for a collection of IFunctionDefinition objects.

public interface IFunctionDefinitionCollection : IObservableCollection<IFunctionDefinition>

Properties

this[string]

Gets the IFunctionDefinition with the specified name.

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

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

The name of the IFunctionDefinition to return.

Property Value

IFunctionDefinition:

The IFunctionDefinition with the specified name.

Inherited Members