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