Skip to content
Docs Try Aspire

InteractionInputCollection Indexers

Class Indexers 2 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; }
name string The name of the input.
InteractionInput The input with the specified name.
KeyNotFoundException Thrown when no input with the specified name exists.
Gets an input by its index.
public InteractionInput this[int index] { get; }
index int The zero-based index of the input.
InteractionInput The input at the specified index.