2004-12-03 Lluis Sanchez Gual <lluis@novell.com>
[mono.git] / mcs / class / corlib / System.Reflection / MethodImplAttributes.cs
index 1db852dfb11499bbfbe1a0bbd1a5eec6e86c830b..15be5829d9498a9ae19192ea775cc3a7f5219279 100755 (executable)
-// MethodImplAttributes.cs\r
-//\r
-// This code was automatically generated from\r
-// ECMA CLI XML Library Specification.\r
-// Generator: libgen.xsl\r
-// Source file: all.xml\r
-// URL: http://devresource.hp.com/devresource/Docs/TechPapers/CSharp/all.xml\r
-//\r
-// (C) 2001 Ximian, Inc.  http://www.ximian.com\r
-\r
-\r
-namespace System.Reflection {\r
-\r
-\r
-       /// <summary>\r
-       /// <para> Specifies flags for the attributes of a method\r
-       ///                   implementation.</para>\r
-       /// </summary>\r
-       /// <remarks>\r
-       /// <para>The attributes are combined using the bitwise OR operation as\r
-       ///                   follows:</para>\r
-       /// <para>code impl mask</para>\r
-       /// <para>CodeTypeMask = 0x0003</para>\r
-       /// <para>IL =0x0000</para>\r
-       /// <para>Native = 0x0001</para>\r
-       /// <para>OPTIL = 0x0002</para>\r
-       /// <para>Runtime = 0x0003</para>\r
-       /// <para>managed mask</para>\r
-       /// <para>ManagedMask = 0x0004</para>\r
-       /// <para>Unmanaged = 0x0004</para>\r
-       /// <para>Managed = 0x0000</para>\r
-       /// <para>implementation info and interop</para>\r
-       /// <para>ForwardRef = 0x0010</para>\r
-       /// <para>OLE = 0x0080</para>\r
-       /// <para>InternalCall=0x1000</para>\r
-       /// <para>Synchronized = 0x0020</para>\r
-       /// <para>NoInlining = 0x0008</para>\r
-       /// <para>OneWay = 0x0040</para>\r
-       /// <para>MaxMethodImplVal = 0xFFFF</para>\r
-       /// </remarks>\r
-       /// <seealso cref="N:System.Reflection" />\r
-       public enum MethodImplAttributes {\r
-\r
-               /// <summary>\r
-               /// <para>Specifies flags about code type.</para>\r
-               /// </summary>\r
-               CodeTypeMask = 3,\r
-\r
-               /// <summary>\r
-               /// <para>Specifies that the method implementation is in Microsoft intermediate language (MSIL).</para>\r
-               /// </summary>\r
-               IL = 0,\r
-\r
-               /// <summary>\r
-               /// <para>Specifies that the method implementation is native.</para>\r
-               /// </summary>\r
-               Native = 1,\r
-\r
-               /// <summary>\r
-               /// <para>Specifies that the method implementation is in Optimized Intermediate Language (OPTIL).</para>\r
-               /// </summary>\r
-               OPTIL = 2,\r
-\r
-               /// <summary>\r
-               /// <para>Specifies that the method implementation is provided by the runtime.</para>\r
-               /// </summary>\r
-               Runtime = 3,\r
-\r
-               /// <summary>\r
-               /// <para>Specifies whether the code is managed or unmanaged.</para>\r
-               /// </summary>\r
-               ManagedMask = 4,\r
-\r
-               /// <summary>\r
-               /// <para>Specifies that the method implementation is unmanaged, otherwise\r
-               ///                   managed.</para>\r
-               /// </summary>\r
-               Unmanaged = 4,\r
-\r
-               /// <summary>\r
-               /// <para>Specifies that the method implementation is managed, otherwise unmanaged.</para>\r
-               /// </summary>\r
-               Managed = 0,\r
-\r
-               /// <summary>\r
-               /// <para>Specifies that the method is not defined.</para>\r
-               /// </summary>\r
-               ForwardRef = 16,\r
-\r
-               /// <summary>\r
-               /// <para>Specifies that the method signature is mangled to return an HRESULT, with a \r
-               ///                   retval as a parameter.</para>\r
-               /// </summary>\r
-               OLE = 128,\r
-\r
-               /// <summary>\r
-               /// <para>Specifies an internal call.</para>\r
-               /// </summary>\r
-               InternalCall = 4096,\r
-\r
-               /// <summary>\r
-               /// <para>Specifies that the method is single-threaded through the body.</para>\r
-               /// </summary>\r
-               Synchronized = 32,\r
-\r
-               /// <summary>\r
-               /// <para>Specifies that the method may not be inlined.</para>\r
-               /// </summary>\r
-               NoInlining = 8,\r
-\r
-               /// <summary>\r
-               /// <para>Specifies that the method has a <see langword="void" /> return value and [in] \r
-               ///                parameters only.</para>\r
-               /// </summary>\r
-               OneWay = 64,\r
-\r
-               /// <summary>\r
-               /// <para>Specifies a range check value.</para>\r
-               /// </summary>\r
-               MaxMethodImplVal = 65535,\r
-       } // MethodImplAttributes\r
-\r
-} // System.Reflection\r
+// MethodImplAttributes.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:42 UTC
+// Source file: all.xml
+// URL: http://devresource.hp.com/devresource/Docs/TechPapers/CSharp/all.xml
+//
+// (C) 2001 Ximian, Inc.  http://www.ximian.com
+
+//
+// Copyright (C) 2004 Novell, Inc (http://www.novell.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
+
+namespace System.Reflection {
+
+
+       /// <summary>
+       /// </summary>
+       [Flags]
+       public enum MethodImplAttributes {
+
+               /// <summary>
+               /// </summary>
+               CodeTypeMask = 3,
+
+               /// <summary>
+               /// </summary>
+               IL = 0,
+
+               /// <summary>
+               /// </summary>
+               Native = 1,
+
+               /// <summary>
+               /// </summary>
+               OPTIL = 2,
+
+               /// <summary>
+               /// </summary>
+               Runtime = 3,
+
+               /// <summary>
+               /// </summary>
+               ManagedMask = 4,
+
+               /// <summary>
+               /// </summary>
+               Unmanaged = 4,
+
+               /// <summary>
+               /// </summary>
+               Managed = 0,
+
+               /// <summary>
+               /// </summary>
+               ForwardRef = 16,
+
+               /// <summary>
+               /// </summary>
+               PreserveSig = 128,
+
+               /// <summary>
+               /// </summary>
+               InternalCall = 4096,
+
+               /// <summary>
+               /// </summary>
+               Synchronized = 32,
+
+               /// <summary>
+               /// </summary>
+               NoInlining = 8,
+
+               /// <summary>
+               /// </summary>
+               MaxMethodImplVal = 65535,
+       } // MethodImplAttributes
+
+} // System.Reflection