// MethodAttributes.cs // // This code was automatically generated from // ECMA CLI XML Library Specification. // Generator: libgen.xsl [1.0; (C) Sergey Chaban (serge@wildwestsoftware.com)] // Created: Wed, 5 Sep 2001 06:39:32 UTC // Source file: all.xml // URL: http://devresource.hp.com/devresource/Docs/TechPapers/CSharp/all.xml // // (C) 2001 Ximian, Inc. http://www.ximian.com namespace System.Reflection { /// /// [Flags] public enum MethodAttributes { /// /// MemberAccessMask = 7, /// /// PrivateScope = 0, /// /// Private = 1, /// /// FamANDAssem = 2, /// /// Assembly = 3, /// /// Family = 4, /// /// FamORAssem = 5, /// /// Public = 6, /// /// Static = 16, /// /// Final = 32, /// /// Virtual = 64, /// /// HideBySig = 128, /// /// VtableLayoutMask = 256, #if NET_1_1 /// /// CheckAccessOnOverride = 512, #endif /// /// ReuseSlot = 0, /// /// NewSlot = 256, /// /// Abstract = 1024, /// /// SpecialName = 2048, /// /// PinvokeImpl = 8192, /// /// UnmanagedExport = 8, /// /// RTSpecialName = 4096, /// /// ReservedMask = 53248, /// /// HasSecurity = 16384, /// /// RequireSecObject = 32768, } // MethodAttributes } // System.Reflection