Interface IArgumentProviderSlim
Interface providing access to an expression node's arguments.
Namespace: System.Linq.Expressions
Assembly: Nuqleon.Linq.Expressions.Bonsai.dll
Syntax
public interface IArgumentProviderSlim
Properties
ArgumentCount
Gets the number of arguments.
Declaration
int ArgumentCount { get; }
Property Value
| Type | Description |
|---|---|
| System.Int32 |
Methods
GetArgument(Int32)
Gets the argument at the specified index.
Declaration
ExpressionSlim GetArgument(int index)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Int32 | index | The index of the argument to retrieve. |
Returns
| Type | Description |
|---|---|
| ExpressionSlim | The argument at the specified index. |