1 write to propertyInfo
System.Workflow.Activities (1)
Rules\Executor.cs (1)
104this.propertyInfo = propertyInfo;
12 references to propertyInfo
System.Workflow.Activities (12)
Rules\Executor.cs (12)
113if (!propertyInfo.GetGetMethod(true).IsStatic && targetObject == null) 115string message = string.Format(CultureInfo.CurrentCulture, Messages.TargetEvaluatedNullProperty, propertyInfo.Name); 117exception.Data[RuleUserDataKeys.ErrorObject] = propertyInfo; 123return propertyInfo.GetValue(targetObject, indexerArguments); 131RuleDecompiler.DecompileType(propertyInfo.ReflectedType), propertyInfo.Name, e.InnerException.Message); 139if (!propertyInfo.GetSetMethod(true).IsStatic && targetObject == null) 141string message = string.Format(CultureInfo.CurrentCulture, Messages.TargetEvaluatedNullProperty, propertyInfo.Name); 143exception.Data[RuleUserDataKeys.ErrorObject] = propertyInfo; 149propertyInfo.SetValue(targetObject, value, indexerArguments); 157RuleDecompiler.DecompileType(propertyInfo.ReflectedType), propertyInfo.Name, e.InnerException.Message);