Skip to content
DocsTry Aspire
DocsTry

InteractionInputCollection Indexers

ClassIndexers2 members
A collection of interaction inputs that supports both indexed and name-based access.
Gets an input by its name.
public InteractionInput this[string name] { get; }
namestringThe name of the input.
InteractionInputThe input with the specified name.
KeyNotFoundExceptionThrown when no input with the specified name exists.
Gets an input by its index.
public InteractionInput this[int index] { get; }
indexintThe zero-based index of the input.
InteractionInputThe input at the specified index.