6 writes to _attributes
System.Reflection.Emit (6)
System\Reflection\Emit\ParameterBuilderImpl.cs (6)
24
_attributes
= attributes;
36
_attributes
|= ParameterAttributes.HasDefault;
44
_attributes
|= ParameterAttributes.In;
47
_attributes
|= ParameterAttributes.Out;
50
_attributes
|= ParameterAttributes.Optional;
53
_attributes
|= ParameterAttributes.HasFieldMarshal;
2 references to _attributes
System.Reflection.Emit (2)
System\Reflection\Emit\ParameterBuilderImpl.cs (2)
27
public override int Attributes => (int)
_attributes
;
79
public override ParameterAttributes Attributes => _pb.
_attributes
;