1 override of Attributes
System.Workflow.ComponentModel (1)
AuthoringOM\Compiler\TypeSystem\RTTypeWrapper.cs (1)
1258public override ParameterAttributes Attributes
11 references to Attributes
mscorlib (7)
system\reflection\parameterinfo.cs (7)
106public bool IsIn { get { return((Attributes & ParameterAttributes.In) != 0); } } 107public bool IsOut { get { return((Attributes & ParameterAttributes.Out) != 0); } } 109public bool IsLcid { get { return((Attributes & ParameterAttributes.Lcid) != 0); } } 111public bool IsRetval { get { return((Attributes & ParameterAttributes.Retval) != 0); } } 112public bool IsOptional { get { return((Attributes & ParameterAttributes.Optional) != 0); } } 431info.AddValue("AttrsImpl", Attributes); 464AttrsImpl = accessor.Attributes;
System.Core (1)
Microsoft\Scripting\Utils\TypeExtensions.cs (1)
67return (pi.Attributes & (ParameterAttributes.Out)) == ParameterAttributes.Out;
System.Workflow.ComponentModel (1)
AuthoringOM\Compiler\TypeSystem\RTTypeWrapper.cs (1)
1260get { return this.paramInfo.Attributes; }
System.WorkflowServices (2)
System\Workflow\Activities\OperationParameterInfo.cs (1)
66SetValue(OperationParameterInfo.AttributesProperty, parameter.Attributes);
System\Workflow\Activities\ValidationHelper.cs (1)
838if (isOneWay && ((parameter.Attributes & ParameterAttributes.Out) > 0 || parameter.ParameterType.IsByRef))