2 writes to operand
System.Activities (2)
System\Activities\Expressions\IndexerReference.cs (2)
137this.operand = operand; 190set { this.operand = value; }
7 references to operand
System.Activities (7)
System\Activities\Expressions\IndexerReference.cs (7)
149Fx.Assert(this.operand != null, "operand must not be null"); 153return (TItem)this.getFunc(this.operand, indices); 157return (TItem)this.getMethod.Invoke(this.operand, indices); 164Fx.Assert(this.operand != null, "operand must not be null"); 177this.setFunc(operand, parameters); 181this.setMethod.Invoke(operand, parameters); 189get { return this.operand; }