1 write to getItemMethod
System.Activities (1)
System\Activities\ExpressionUtilities.cs (1)
498this.getItemMethod = callExpression.Method;
7 references to getItemMethod
System.Activities (7)
System\Activities\ExpressionUtilities.cs (7)
500Fx.Assert(this.getItemMethod.IsSpecialName && this.getItemMethod.Name.StartsWith("get_", StringComparison.Ordinal), "Special get_Item method required."); 503this.indexerName = this.getItemMethod.Name.Substring(4); 505ParameterInfo[] getItemParameters = this.getItemMethod.GetParameters(); 512setItemParameterTypes[getItemParameters.Length] = this.getItemMethod.ReturnType; 514this.setItemMethod = this.getItemMethod.DeclaringType.GetMethod( 554return new IndexerLocation(this.indexerName, this.getItemMethod, this.setItemMethod, targetObject, setItemArguments);