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