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