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