2 writes to type
System.Workflow.Activities (2)
Rules\RuleValidation.cs (2)
2476this.type = validation.ExpressionInfo(expr).ExpressionType; 2482this.type = type;
6 references to type
System.Workflow.Activities (6)
Rules\RuleValidation.cs (6)
2535if (this.type.IsByRef && this.type != argument.type) 2540message = string.Format(CultureInfo.CurrentCulture, Messages.MethodArgumentTypeMismatch, argPosition, methodName, RuleDecompiler.DecompileType(argument.type), RuleDecompiler.DecompileType(this.type)); 2548if (!RuleValidation.TypesAreAssignable(argument.type, this.type, argument.expression, out error)) 2552message = string.Format(CultureInfo.CurrentCulture, Messages.MethodArgumentTypeMismatch, argPosition, methodName, RuleDecompiler.DecompileType(argument.type), RuleDecompiler.DecompileType(this.type)); 2589if (argument.type == this.type) 2591if (argument.type == otherParam.type)