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