summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/Reflection/Emit/OperandType.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/mscorlib/src/System/Reflection/Emit/OperandType.cs')
-rw-r--r--src/mscorlib/src/System/Reflection/Emit/OperandType.cs46
1 files changed, 46 insertions, 0 deletions
diff --git a/src/mscorlib/src/System/Reflection/Emit/OperandType.cs b/src/mscorlib/src/System/Reflection/Emit/OperandType.cs
new file mode 100644
index 0000000000..ead19f35e3
--- /dev/null
+++ b/src/mscorlib/src/System/Reflection/Emit/OperandType.cs
@@ -0,0 +1,46 @@
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+
+/*============================================================
+**
+**
+**
+**
+**Purpose: Exposes OperandType Attribute of IL .
+**
+** THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT BY HAND!
+** See opcodegen.pl for more information.**
+============================================================*/
+namespace System.Reflection.Emit {
+
+using System;
+
+[Serializable]
+[System.Runtime.InteropServices.ComVisible(true)]
+public enum OperandType
+{
+
+ InlineBrTarget = 0,
+ InlineField = 1,
+ InlineI = 2,
+ InlineI8 = 3,
+ InlineMethod = 4,
+ InlineNone = 5,
+#if !FEATURE_CORECLR
+ /// <internalonly/>
+ [Obsolete("This API has been deprecated. http://go.microsoft.com/fwlink/?linkid=14202")]
+ InlinePhi = 6,
+#endif
+ InlineR = 7,
+ InlineSig = 9,
+ InlineString = 10,
+ InlineSwitch = 11,
+ InlineTok = 12,
+ InlineType = 13,
+ InlineVar = 14,
+ ShortInlineBrTarget = 15,
+ ShortInlineI = 16,
+ ShortInlineR = 17,
+ ShortInlineVar = 18,
+}
+}