17 references to MethodSemanticsAttributes
mscorlib (17)
system\reflection\Associates.cs (7)
157
MethodSemanticsAttributes
semantics = (
MethodSemanticsAttributes
)associatesData[i * 2 + 1];
191
if (semantics ==
MethodSemanticsAttributes
.Setter)
193
else if (semantics ==
MethodSemanticsAttributes
.Getter)
195
else if (semantics ==
MethodSemanticsAttributes
.Fire)
197
else if (semantics ==
MethodSemanticsAttributes
.AddOn)
199
else if (semantics ==
MethodSemanticsAttributes
.RemoveOn)
system\reflection\emit\eventbuilder.cs (5)
64
private void SetMethodSemantics(MethodBuilder mdBuilder,
MethodSemanticsAttributes
semantics)
83
SetMethodSemantics(mdBuilder,
MethodSemanticsAttributes
.AddOn);
89
SetMethodSemantics(mdBuilder,
MethodSemanticsAttributes
.RemoveOn);
95
SetMethodSemantics(mdBuilder,
MethodSemanticsAttributes
.Fire);
101
SetMethodSemantics(mdBuilder,
MethodSemanticsAttributes
.Other);
system\reflection\emit\propertybuilder.cs (4)
109
private void SetMethodSemantics(MethodBuilder mdBuilder,
MethodSemanticsAttributes
semantics)
127
SetMethodSemantics(mdBuilder,
MethodSemanticsAttributes
.Getter);
134
SetMethodSemantics(mdBuilder,
MethodSemanticsAttributes
.Setter);
141
SetMethodSemantics(mdBuilder,
MethodSemanticsAttributes
.Other);
system\reflection\emit\typebuilder.cs (1)
271
MethodSemanticsAttributes
semantics, int tkMethod);