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