System.Reflection.MethodSemanticsAttributes
namespace System.Reflection
{
public enum MethodSemanticsAttributes
{
Setter = 1,
Getter = 2,
Other = 4,
Adder = 8,
Remover = 16,
Raiser = 32
}
}