In This Article

IFunctionDefinitionCollection Interface

Provides the base requirements for a collection of IFunctionDefinition objects.

public interface IFunctionDefinitionCollection : IObservableCollection<IFunctionDefinition>, IList<IFunctionDefinition>, ICollection<IFunctionDefinition>, IEnumerable<IFunctionDefinition>, IEnumerable

Properties

Item[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

Extension Methods