11 references to Out
mscorlib (2)
system\reflection\emit\parameterbuilder.cs (1)
167
get {return ((m_attributes & ParameterAttributes.
Out
) != 0);}
system\reflection\parameterinfo.cs (1)
107
public bool IsOut { get { return((Attributes & ParameterAttributes.
Out
) != 0); } }
System.Core (2)
Microsoft\Scripting\Utils\TypeExtensions.cs (2)
67
return (pi.Attributes & (ParameterAttributes.
Out
)) == ParameterAttributes.
Out
;
System.Workflow.ComponentModel (2)
AuthoringOM\Compiler\TypeSystem\Helper.cs (1)
24
paramAttributes = ParameterAttributes.
Out
;
AuthoringOM\Compiler\TypeSystem\ParameterInfo.cs (1)
49
if ((this.AttrsImpl & ParameterAttributes.
Out
) > 0 || this.isRef)
System.WorkflowServices (5)
System\Workflow\Activities\ContractMethodParameterInfo.cs (1)
35
if ((this.AttrsImpl & ParameterAttributes.
Out
) > 0)
System\Workflow\Activities\Design\ServiceOperationDetailViewControl.cs (2)
727
operationParameterInfo.Attributes |= ParameterAttributes.
Out
;
732
operationParameterInfo.Attributes |= ParameterAttributes.
Out
;
System\Workflow\Activities\OperationParameterInfo.cs (1)
111
return ((this.Attributes & ParameterAttributes.
Out
) != 0);
System\Workflow\Activities\ValidationHelper.cs (1)
838
if (isOneWay && ((parameter.Attributes & ParameterAttributes.
Out
) > 0 || parameter.ParameterType.IsByRef))