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