7 writes to AttrsImpl
mscorlib (4)
system\reflection\parameterinfo.cs (4)
70AttrsImpl = attributes; 464AttrsImpl = accessor.Attributes; 485AttrsImpl = attributes; 500AttrsImpl = ParameterAttributes.None;
System.Workflow.ComponentModel (2)
AuthoringOM\Compiler\TypeSystem\ParameterInfo.cs (2)
24this.AttrsImpl = Helper.ConvertToParameterAttributes(codeParameter.Direction); 35this.AttrsImpl = ParameterAttributes.None;
System.WorkflowServices (1)
System\Workflow\Activities\ContractMethodParameterInfo.cs (1)
26this.AttrsImpl = parameterInfo.Attributes;
3 references to AttrsImpl
mscorlib (1)
system\reflection\parameterinfo.cs (1)
97public virtual ParameterAttributes Attributes { get { return AttrsImpl; } }
System.Workflow.ComponentModel (1)
AuthoringOM\Compiler\TypeSystem\ParameterInfo.cs (1)
49if ((this.AttrsImpl & ParameterAttributes.Out) > 0 || this.isRef)
System.WorkflowServices (1)
System\Workflow\Activities\ContractMethodParameterInfo.cs (1)
35if ((this.AttrsImpl & ParameterAttributes.Out) > 0)