13 references to Attributes
System.Private.CoreLib (13)
src\System\Reflection\Associates.cs (13)
126
Attributes
attributes =
127
Attributes
.ComposedOfAllPrivateMethods |
128
Attributes
.ComposedOfAllVirtualMethods |
129
Attributes
.ComposedOfNoPublicMembers |
130
Attributes
.ComposedOfNoStaticMembers;
165
attributes &= ~
Attributes
.ComposedOfNoPublicMembers;
166
attributes &= ~
Attributes
.ComposedOfAllPrivateMethods;
170
attributes &= ~
Attributes
.ComposedOfAllPrivateMethods;
174
attributes &= ~
Attributes
.ComposedOfNoStaticMembers;
177
attributes &= ~
Attributes
.ComposedOfAllVirtualMethods;
197
bool isPseudoPublic = (attributes &
Attributes
.ComposedOfNoPublicMembers) == 0;
198
bool isPseudoStatic = (attributes &
Attributes
.ComposedOfNoStaticMembers) == 0;
201
composedOfAllPrivateMethods = (attributes &
Attributes
.ComposedOfAllPrivateMethods) != 0;