7 references to Indices
System.Activities (7)
System\Activities\Expressions\ExpressionServices.cs (1)
282
string argumentError = TryConvertArguments(methodCallExpressionBody.Arguments, indexerReference.
Indices
, methodCallExpressionBody.GetType(), 1, null, throwOnError);
System\Activities\Expressions\IndexerReference.cs (6)
70
if (this.
Indices
.Count == 0)
76
IndexerHelper.CacheMethod<TOperand, TItem>(this.
Indices
, ref this.getMethod, ref this.setMethod);
87
IndexerHelper.OnGetArguments<TItem>(this.
Indices
, this.Result, metadata);
100
object[] indicesValue = new object[this.
Indices
.Count];
102
for (int i = 0; i < this.
Indices
.Count; i++)
104
indicesValue[i] = this.
Indices
[i].Get(context);