27 references to MethodSemanticsAttributes
Microsoft.CodeAnalysis (9)
PEWriter\MetadataWriter.cs (9)
2677
MethodSemanticsAttributes
semantics;
2680
semantics =
MethodSemanticsAttributes
.Setter;
2684
semantics =
MethodSemanticsAttributes
.Getter;
2688
semantics =
MethodSemanticsAttributes
.Other;
2709
MethodSemanticsAttributes
semantics;
2712
semantics =
MethodSemanticsAttributes
.Adder;
2716
semantics =
MethodSemanticsAttributes
.Remover;
2720
semantics =
MethodSemanticsAttributes
.Raiser;
2724
semantics =
MethodSemanticsAttributes
.Other;
System.Reflection.Emit (8)
System\Reflection\Emit\ModuleBuilderImpl.cs (8)
242
AddMethodSemantics(eventHandle,
MethodSemanticsAttributes
.Adder, aMb._handle);
247
AddMethodSemantics(eventHandle,
MethodSemanticsAttributes
.Raiser, rMb._handle);
252
AddMethodSemantics(eventHandle,
MethodSemanticsAttributes
.Remover, remMb._handle);
259
AddMethodSemantics(eventHandle,
MethodSemanticsAttributes
.Other, method._handle);
280
AddMethodSemantics(propertyHandle,
MethodSemanticsAttributes
.Getter, gMb._handle);
285
AddMethodSemantics(propertyHandle,
MethodSemanticsAttributes
.Setter, sMb._handle);
292
AddMethodSemantics(propertyHandle,
MethodSemanticsAttributes
.Other, method._handle);
889
private void AddMethodSemantics(EntityHandle parentHandle,
MethodSemanticsAttributes
attribute, MethodDefinitionHandle methodHandle) =>
System.Reflection.Metadata (10)
System\Reflection\Metadata\Ecma335\MetadataBuilder.Tables.cs (1)
693
public void AddMethodSemantics(EntityHandle association,
MethodSemanticsAttributes
semantics, MethodDefinitionHandle methodDefinition)
System\Reflection\Metadata\Internal\Tables.cs (2)
1513
internal
MethodSemanticsAttributes
GetSemantics(int rowId)
1516
return (
MethodSemanticsAttributes
)this.Block.PeekUInt16(rowOffset + _SemanticsFlagOffset);
System\Reflection\Metadata\TypeSystem\EventDefinition.cs (4)
78
case
MethodSemanticsAttributes
.Adder:
82
case
MethodSemanticsAttributes
.Remover:
86
case
MethodSemanticsAttributes
.Raiser:
90
case
MethodSemanticsAttributes
.Other:
System\Reflection\Metadata\TypeSystem\PropertyDefinition.cs (3)
89
case
MethodSemanticsAttributes
.Getter:
93
case
MethodSemanticsAttributes
.Setter:
97
case
MethodSemanticsAttributes
.Other: