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