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