62 references to ParameterAttributes
mscorlib (27)
system\diagnostics\symbolstore\isymwriter.cs (1)
150ParameterAttributes attributes,
system\reflection\emit\constructorbuilder.cs (2)
178public ParameterBuilder DefineParameter(int iSequence, ParameterAttributes attributes, String strParamName) 185attributes = attributes & ~ParameterAttributes.ReservedMask;
system\reflection\emit\dynamicmethod.cs (1)
777public ParameterBuilder DefineParameter(int position, ParameterAttributes attributes, String parameterName) {
system\reflection\emit\methodbuilder.cs (2)
847public ParameterBuilder DefineParameter(int position, ParameterAttributes attributes, String strParamName) 859attributes = attributes & ~ParameterAttributes.ReservedMask;
system\reflection\emit\parameterbuilder.cs (5)
105ParameterAttributes attributes, 164get {return ((m_attributes & ParameterAttributes.In) != 0);} 167get {return ((m_attributes & ParameterAttributes.Out) != 0);} 170get {return ((m_attributes & ParameterAttributes.Optional) != 0);} 175private ParameterAttributes m_attributes;
system\reflection\emit\typebuilder.cs (1)
290ParameterAttributes iParamAttributes, String strParamName);
system\reflection\mdimport.cs (2)
531public void GetParamDefProps(int parameterToken, out int sequence, out ParameterAttributes attributes) 537attributes = (ParameterAttributes)_attributes;
system\reflection\parameterinfo.cs (13)
34protected ParameterAttributes AttrsImpl; 68internal void SetAttributes(ParameterAttributes attributes) 97public virtual ParameterAttributes Attributes { get { return AttrsImpl; } } 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); } } 317ParameterAttributes attr; 349returnParameter = new RuntimeParameterInfo(sig, MetadataImport.EmptyImport, 0, -1, (ParameterAttributes)0, member); 361args[i] = new RuntimeParameterInfo(sig, MetadataImport.EmptyImport, 0, i, (ParameterAttributes)0, member); 474int position, ParameterAttributes attributes, MemberInfo member) 500AttrsImpl = ParameterAttributes.None;
System.Activities (3)
System\Activities\Debugger\StateManager.cs (3)
614methodbuilder.DefineParameter(1, ParameterAttributes.None, "isPriming"); 615methodbuilder.DefineParameter(2, ParameterAttributes.None, "typeIslandArguments"); 625methodbuilder.DefineParameter(i, ParameterAttributes.None, localsItemDescription.Name);
System.Core (3)
Microsoft\Scripting\Compiler\LambdaCompiler.cs (1)
135method.DefineParameter(i + startIndex, ParameterAttributes.None, paramNames[i]);
Microsoft\Scripting\Utils\TypeExtensions.cs (2)
67return (pi.Attributes & (ParameterAttributes.Out)) == ParameterAttributes.Out;
System.Data.SqlXml (4)
System\Xml\Xsl\IlGen\XmlILModule.cs (4)
199methBldr.DefineParameter(1, ParameterAttributes.None, RuntimeName); 203methBldr.DefineParameter(i + (isRaw ? 1 : 2), ParameterAttributes.None, paramNames[i]); 213methDyn.DefineParameter(1, ParameterAttributes.None, RuntimeName); 217methDyn.DefineParameter(i + (isRaw ? 1 : 2), ParameterAttributes.None, paramNames[i]);
System.Workflow.ComponentModel (9)
AuthoringOM\Compiler\TypeSystem\Helper.cs (6)
14internal static ParameterAttributes ConvertToParameterAttributes(FieldDirection direction) 16ParameterAttributes paramAttributes = ParameterAttributes.None; 21paramAttributes = ParameterAttributes.In; 24paramAttributes = ParameterAttributes.Out; 27paramAttributes = default(ParameterAttributes);
AuthoringOM\Compiler\TypeSystem\ParameterInfo.cs (2)
35this.AttrsImpl = ParameterAttributes.None; 49if ((this.AttrsImpl & ParameterAttributes.Out) > 0 || this.isRef)
AuthoringOM\Compiler\TypeSystem\RTTypeWrapper.cs (1)
1258public override ParameterAttributes Attributes
System.WorkflowServices (15)
System\Workflow\Activities\ContractMethodParameterInfo.cs (1)
35if ((this.AttrsImpl & ParameterAttributes.Out) > 0)
System\Workflow\Activities\Design\ServiceOperationDetailViewControl.cs (5)
723operationParameterInfo.Attributes |= ParameterAttributes.In; 727operationParameterInfo.Attributes |= ParameterAttributes.Out; 731operationParameterInfo.Attributes |= ParameterAttributes.In; 732operationParameterInfo.Attributes |= ParameterAttributes.Out; 737operationParameterInfo.Attributes |= ParameterAttributes.Retval;
System\Workflow\Activities\OperationParameterInfo.cs (8)
27typeof(ParameterAttributes), typeof(OperationParameterInfo), 70public ParameterAttributes Attributes 74return (ParameterAttributes) GetValue(AttributesProperty); 86return ((this.Attributes & ParameterAttributes.In) != 0); 95return ((this.Attributes & ParameterAttributes.Lcid) != 0); 103return ((this.Attributes & ParameterAttributes.Optional) != 0); 111return ((this.Attributes & ParameterAttributes.Out) != 0); 120return ((this.Attributes & ParameterAttributes.Retval) != 0);
System\Workflow\Activities\ValidationHelper.cs (1)
838if (isOneWay && ((parameter.Attributes & ParameterAttributes.Out) > 0 || parameter.ParameterType.IsByRef))
System.Xml (1)
System\Xml\Serialization\CodeGenerator.cs (1)
107this.methodBuilder.DefineParameter(arg.Index, ParameterAttributes.None, arg.Name);