summaryrefslogtreecommitdiff
path: root/.packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Reflection.Primitives.xml
diff options
context:
space:
mode:
Diffstat (limited to '.packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Reflection.Primitives.xml')
-rwxr-xr-x.packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Reflection.Primitives.xml1771
1 files changed, 1771 insertions, 0 deletions
diff --git a/.packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Reflection.Primitives.xml b/.packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Reflection.Primitives.xml
new file mode 100755
index 0000000000..e287cf8946
--- /dev/null
+++ b/.packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Reflection.Primitives.xml
@@ -0,0 +1,1771 @@
+<?xml version="1.0" encoding="utf-8"?><span>
+<doc>
+ <assembly>
+ <name>System.Reflection.Primitives</name>
+ </assembly>
+ <members>
+ <member name="T:System.Reflection.CallingConventions">
+ <summary>Defines the valid calling conventions for a method.</summary>
+ </member>
+ <member name="F:System.Reflection.CallingConventions.Any">
+ <summary>Specifies that either the Standard or the VarArgs calling convention may be used.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.CallingConventions.ExplicitThis">
+ <summary>Specifies that the signature is a function-pointer signature, representing a call to an instance or virtual method (not a static method). If ExplicitThis is set, HasThis must also be set. The first argument passed to the called method is still a this pointer, but the type of the first argument is now unknown. Therefore, a token that describes the type (or class) of the this pointer is explicitly stored into its metadata signature.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.CallingConventions.HasThis">
+ <summary>Specifies an instance or virtual method (not a static method). At run-time, the called method is passed a pointer to the target object as its first argument (the this pointer). The signature stored in metadata does not include the type of this first argument, because the method is known and its owner class can be discovered from metadata.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.CallingConventions.Standard">
+ <summary>Specifies the default calling convention as determined by the common language runtime. Use this calling convention for static methods. For instance or virtual methods use HasThis.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.CallingConventions.VarArgs">
+ <summary>Specifies the calling convention for methods with variable arguments.</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.Reflection.Emit.FlowControl">
+ <summary>Describes how an instruction alters the flow of control.</summary>
+ </member>
+ <member name="F:System.Reflection.Emit.FlowControl.Branch">
+ <summary>Branch instruction.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.FlowControl.Break">
+ <summary>Break instruction.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.FlowControl.Call">
+ <summary>Call instruction.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.FlowControl.Cond_Branch">
+ <summary>Conditional branch instruction.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.FlowControl.Meta">
+ <summary>Provides information about a subsequent instruction. For example, the Unaligned instruction of Reflection.Emit.Opcodes has FlowControl.Meta and specifies that the subsequent pointer instruction might be unaligned.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.FlowControl.Next">
+ <summary>Normal flow of control.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.FlowControl.Phi">
+ <summary>This enumerator value is reserved and should not be used.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.FlowControl.Return">
+ <summary>Return instruction.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.FlowControl.Throw">
+ <summary>Exception throw instruction.</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.Reflection.Emit.OpCode">
+ <summary>Describes an intermediate language (IL) instruction.</summary>
+ </member>
+ <member name="M:System.Reflection.Emit.OpCode.Equals(System.Object)">
+ <summary>Tests whether the given object is equal to this Opcode.</summary>
+ <param name="obj">The object to compare to this object.</param>
+ <returns>true if <paramref name="obj">obj</paramref> is an instance of Opcode and is equal to this object; otherwise, false.</returns>
+ </member>
+ <member name="M:System.Reflection.Emit.OpCode.Equals(System.Reflection.Emit.OpCode)">
+ <summary>Indicates whether the current instance is equal to the specified <see cref="T:System.Reflection.Emit.OpCode"></see>.</summary>
+ <param name="obj">The <see cref="T:System.Reflection.Emit.OpCode"></see> to compare to the current instance.</param>
+ <returns>true if the value of <paramref name="obj">obj</paramref> is equal to the value of the current instance; otherwise, false.</returns>
+ </member>
+ <member name="P:System.Reflection.Emit.OpCode.FlowControl">
+ <summary>The flow control characteristics of the intermediate language (IL) instruction.</summary>
+ <returns>Read-only. The type of flow control.</returns>
+ </member>
+ <member name="M:System.Reflection.Emit.OpCode.GetHashCode">
+ <summary>Returns the generated hash code for this Opcode.</summary>
+ <returns>Returns the hash code for this instance.</returns>
+ </member>
+ <member name="P:System.Reflection.Emit.OpCode.Name">
+ <summary>The name of the intermediate language (IL) instruction.</summary>
+ <returns>Read-only. The name of the IL instruction.</returns>
+ </member>
+ <member name="M:System.Reflection.Emit.OpCode.op_Equality(System.Reflection.Emit.OpCode,System.Reflection.Emit.OpCode)">
+ <summary>Indicates whether two <see cref="T:System.Reflection.Emit.OpCode"></see> structures are equal.</summary>
+ <param name="a">The <see cref="T:System.Reflection.Emit.OpCode"></see> to compare to b.</param>
+ <param name="b">The <see cref="T:System.Reflection.Emit.OpCode"></see> to compare to a.</param>
+ <returns>true if <paramref name="a">a</paramref> is equal to <paramref name="b">b</paramref>; otherwise, false.</returns>
+ </member>
+ <member name="M:System.Reflection.Emit.OpCode.op_Inequality(System.Reflection.Emit.OpCode,System.Reflection.Emit.OpCode)">
+ <summary>Indicates whether two <see cref="T:System.Reflection.Emit.OpCode"></see> structures are not equal.</summary>
+ <param name="a">The <see cref="T:System.Reflection.Emit.OpCode"></see> to compare to b.</param>
+ <param name="b">The <see cref="T:System.Reflection.Emit.OpCode"></see> to compare to a.</param>
+ <returns>true if <paramref name="a">a</paramref> is not equal to <paramref name="b">b</paramref>; otherwise, false.</returns>
+ </member>
+ <member name="P:System.Reflection.Emit.OpCode.OpCodeType">
+ <summary>The type of intermediate language (IL) instruction.</summary>
+ <returns>Read-only. The type of intermediate language (IL) instruction.</returns>
+ </member>
+ <member name="P:System.Reflection.Emit.OpCode.OperandType">
+ <summary>The operand type of an intermediate language (IL) instruction.</summary>
+ <returns>Read-only. The operand type of an IL instruction.</returns>
+ </member>
+ <member name="P:System.Reflection.Emit.OpCode.Size">
+ <summary>The size of the intermediate language (IL) instruction.</summary>
+ <returns>Read-only. The size of the IL instruction.</returns>
+ </member>
+ <member name="P:System.Reflection.Emit.OpCode.StackBehaviourPop">
+ <summary>How the intermediate language (IL) instruction pops the stack.</summary>
+ <returns>Read-only. The way the IL instruction pops the stack.</returns>
+ </member>
+ <member name="P:System.Reflection.Emit.OpCode.StackBehaviourPush">
+ <summary>How the intermediate language (IL) instruction pushes operand onto the stack.</summary>
+ <returns>Read-only. The way the IL instruction pushes operand onto the stack.</returns>
+ </member>
+ <member name="M:System.Reflection.Emit.OpCode.ToString">
+ <summary>Returns this Opcode as a <see cref="T:System.String"></see>.</summary>
+ <returns>Returns a <see cref="T:System.String"></see> containing the name of this Opcode.</returns>
+ </member>
+ <member name="P:System.Reflection.Emit.OpCode.Value">
+ <summary>Gets the numeric value of the intermediate language (IL) instruction.</summary>
+ <returns>Read-only. The numeric value of the IL instruction.</returns>
+ </member>
+ <member name="T:System.Reflection.Emit.OpCodes">
+ <summary>Provides field representations of the Microsoft Intermediate Language (MSIL) instructions for emission by the <see cref="T:System.Reflection.Emit.ILGenerator"></see> class members (such as <see cref="M:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode)"></see>).</summary>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Add">
+ <summary>Adds two values and pushes the result onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Add_Ovf">
+ <summary>Adds two integers, performs an overflow check, and pushes the result onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Add_Ovf_Un">
+ <summary>Adds two unsigned integer values, performs an overflow check, and pushes the result onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.And">
+ <summary>Computes the bitwise AND of two values and pushes the result onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Arglist">
+ <summary>Returns an unmanaged pointer to the argument list of the current method.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Beq">
+ <summary>Transfers control to a target instruction if two values are equal.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Beq_S">
+ <summary>Transfers control to a target instruction (short form) if two values are equal.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Bge">
+ <summary>Transfers control to a target instruction if the first value is greater than or equal to the second value.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Bge_S">
+ <summary>Transfers control to a target instruction (short form) if the first value is greater than or equal to the second value.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Bge_Un">
+ <summary>Transfers control to a target instruction if the first value is greater than the second value, when comparing unsigned integer values or unordered float values.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Bge_Un_S">
+ <summary>Transfers control to a target instruction (short form) if the first value is greater than the second value, when comparing unsigned integer values or unordered float values.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Bgt">
+ <summary>Transfers control to a target instruction if the first value is greater than the second value.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Bgt_S">
+ <summary>Transfers control to a target instruction (short form) if the first value is greater than the second value.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Bgt_Un">
+ <summary>Transfers control to a target instruction if the first value is greater than the second value, when comparing unsigned integer values or unordered float values.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Bgt_Un_S">
+ <summary>Transfers control to a target instruction (short form) if the first value is greater than the second value, when comparing unsigned integer values or unordered float values.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ble">
+ <summary>Transfers control to a target instruction if the first value is less than or equal to the second value.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ble_S">
+ <summary>Transfers control to a target instruction (short form) if the first value is less than or equal to the second value.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ble_Un">
+ <summary>Transfers control to a target instruction if the first value is less than or equal to the second value, when comparing unsigned integer values or unordered float values.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ble_Un_S">
+ <summary>Transfers control to a target instruction (short form) if the first value is less than or equal to the second value, when comparing unsigned integer values or unordered float values.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Blt">
+ <summary>Transfers control to a target instruction if the first value is less than the second value.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Blt_S">
+ <summary>Transfers control to a target instruction (short form) if the first value is less than the second value.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Blt_Un">
+ <summary>Transfers control to a target instruction if the first value is less than the second value, when comparing unsigned integer values or unordered float values.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Blt_Un_S">
+ <summary>Transfers control to a target instruction (short form) if the first value is less than the second value, when comparing unsigned integer values or unordered float values.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Bne_Un">
+ <summary>Transfers control to a target instruction when two unsigned integer values or unordered float values are not equal.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Bne_Un_S">
+ <summary>Transfers control to a target instruction (short form) when two unsigned integer values or unordered float values are not equal.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Box">
+ <summary>Converts a value type to an object reference (type O).</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Br">
+ <summary>Unconditionally transfers control to a target instruction.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Br_S">
+ <summary>Unconditionally transfers control to a target instruction (short form).</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Break">
+ <summary>Signals the Common Language Infrastructure (CLI) to inform the debugger that a break point has been tripped.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Brfalse">
+ <summary>Transfers control to a target instruction if <paramref name="value">value</paramref> is false, a null reference (Nothing in Visual Basic), or zero.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Brfalse_S">
+ <summary>Transfers control to a target instruction if <paramref name="value">value</paramref> is false, a null reference, or zero.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Brtrue">
+ <summary>Transfers control to a target instruction if <paramref name="value">value</paramref> is true, not null, or non-zero.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Brtrue_S">
+ <summary>Transfers control to a target instruction (short form) if <paramref name="value">value</paramref> is true, not null, or non-zero.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Call">
+ <summary>Calls the method indicated by the passed method descriptor.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Calli">
+ <summary>Calls the method indicated on the evaluation stack (as a pointer to an entry point) with arguments described by a calling convention.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Callvirt">
+ <summary>Calls a late-bound method on an object, pushing the return value onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Castclass">
+ <summary>Attempts to cast an object passed by reference to the specified class.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ceq">
+ <summary>Compares two values. If they are equal, the integer value 1 (int32) is pushed onto the evaluation stack; otherwise 0 (int32) is pushed onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Cgt">
+ <summary>Compares two values. If the first value is greater than the second, the integer value 1 (int32) is pushed onto the evaluation stack; otherwise 0 (int32) is pushed onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Cgt_Un">
+ <summary>Compares two unsigned or unordered values. If the first value is greater than the second, the integer value 1 (int32) is pushed onto the evaluation stack; otherwise 0 (int32) is pushed onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ckfinite">
+ <summary>Throws <see cref="T:System.ArithmeticException"></see> if value is not a finite number.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Clt">
+ <summary>Compares two values. If the first value is less than the second, the integer value 1 (int32) is pushed onto the evaluation stack; otherwise 0 (int32) is pushed onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Clt_Un">
+ <summary>Compares the unsigned or unordered values <paramref name="value1">value1</paramref> and <paramref name="value2">value2</paramref>. If <paramref name="value1">value1</paramref> is less than <paramref name="value2">value2</paramref>, then the integer value 1 (int32) is pushed onto the evaluation stack; otherwise 0 (int32) is pushed onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Constrained">
+ <summary>Constrains the type on which a virtual method call is made.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Conv_I">
+ <summary>Converts the value on top of the evaluation stack to native int.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Conv_I1">
+ <summary>Converts the value on top of the evaluation stack to int8, then extends (pads) it to int32.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Conv_I2">
+ <summary>Converts the value on top of the evaluation stack to int16, then extends (pads) it to int32.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Conv_I4">
+ <summary>Converts the value on top of the evaluation stack to int32.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Conv_I8">
+ <summary>Converts the value on top of the evaluation stack to int64.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Conv_Ovf_I">
+ <summary>Converts the signed value on top of the evaluation stack to signed native int, throwing <see cref="T:System.OverflowException"></see> on overflow.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Conv_Ovf_I_Un">
+ <summary>Converts the unsigned value on top of the evaluation stack to signed native int, throwing <see cref="T:System.OverflowException"></see> on overflow.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Conv_Ovf_I1">
+ <summary>Converts the signed value on top of the evaluation stack to signed int8 and extends it to int32, throwing <see cref="T:System.OverflowException"></see> on overflow.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Conv_Ovf_I1_Un">
+ <summary>Converts the unsigned value on top of the evaluation stack to signed int8 and extends it to int32, throwing <see cref="T:System.OverflowException"></see> on overflow.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Conv_Ovf_I2">
+ <summary>Converts the signed value on top of the evaluation stack to signed int16 and extending it to int32, throwing <see cref="T:System.OverflowException"></see> on overflow.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Conv_Ovf_I2_Un">
+ <summary>Converts the unsigned value on top of the evaluation stack to signed int16 and extends it to int32, throwing <see cref="T:System.OverflowException"></see> on overflow.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Conv_Ovf_I4">
+ <summary>Converts the signed value on top of the evaluation stack to signed int32, throwing <see cref="T:System.OverflowException"></see> on overflow.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Conv_Ovf_I4_Un">
+ <summary>Converts the unsigned value on top of the evaluation stack to signed int32, throwing <see cref="T:System.OverflowException"></see> on overflow.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Conv_Ovf_I8">
+ <summary>Converts the signed value on top of the evaluation stack to signed int64, throwing <see cref="T:System.OverflowException"></see> on overflow.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Conv_Ovf_I8_Un">
+ <summary>Converts the unsigned value on top of the evaluation stack to signed int64, throwing <see cref="T:System.OverflowException"></see> on overflow.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Conv_Ovf_U">
+ <summary>Converts the signed value on top of the evaluation stack to unsigned native int, throwing <see cref="T:System.OverflowException"></see> on overflow.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Conv_Ovf_U_Un">
+ <summary>Converts the unsigned value on top of the evaluation stack to unsigned native int, throwing <see cref="T:System.OverflowException"></see> on overflow.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Conv_Ovf_U1">
+ <summary>Converts the signed value on top of the evaluation stack to unsigned int8 and extends it to int32, throwing <see cref="T:System.OverflowException"></see> on overflow.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Conv_Ovf_U1_Un">
+ <summary>Converts the unsigned value on top of the evaluation stack to unsigned int8 and extends it to int32, throwing <see cref="T:System.OverflowException"></see> on overflow.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Conv_Ovf_U2">
+ <summary>Converts the signed value on top of the evaluation stack to unsigned int16 and extends it to int32, throwing <see cref="T:System.OverflowException"></see> on overflow.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Conv_Ovf_U2_Un">
+ <summary>Converts the unsigned value on top of the evaluation stack to unsigned int16 and extends it to int32, throwing <see cref="T:System.OverflowException"></see> on overflow.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Conv_Ovf_U4">
+ <summary>Converts the signed value on top of the evaluation stack to unsigned int32, throwing <see cref="T:System.OverflowException"></see> on overflow.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Conv_Ovf_U4_Un">
+ <summary>Converts the unsigned value on top of the evaluation stack to unsigned int32, throwing <see cref="T:System.OverflowException"></see> on overflow.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Conv_Ovf_U8">
+ <summary>Converts the signed value on top of the evaluation stack to unsigned int64, throwing <see cref="T:System.OverflowException"></see> on overflow.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Conv_Ovf_U8_Un">
+ <summary>Converts the unsigned value on top of the evaluation stack to unsigned int64, throwing <see cref="T:System.OverflowException"></see> on overflow.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Conv_R_Un">
+ <summary>Converts the unsigned integer value on top of the evaluation stack to float32.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Conv_R4">
+ <summary>Converts the value on top of the evaluation stack to float32.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Conv_R8">
+ <summary>Converts the value on top of the evaluation stack to float64.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Conv_U">
+ <summary>Converts the value on top of the evaluation stack to unsigned native int, and extends it to native int.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Conv_U1">
+ <summary>Converts the value on top of the evaluation stack to unsigned int8, and extends it to int32.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Conv_U2">
+ <summary>Converts the value on top of the evaluation stack to unsigned int16, and extends it to int32.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Conv_U4">
+ <summary>Converts the value on top of the evaluation stack to unsigned int32, and extends it to int32.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Conv_U8">
+ <summary>Converts the value on top of the evaluation stack to unsigned int64, and extends it to int64.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Cpblk">
+ <summary>Copies a specified number bytes from a source address to a destination address.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Cpobj">
+ <summary>Copies the value type located at the address of an object (type &amp;, * or native int) to the address of the destination object (type &amp;, * or native int).</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Div">
+ <summary>Divides two values and pushes the result as a floating-point (type F) or quotient (type int32) onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Div_Un">
+ <summary>Divides two unsigned integer values and pushes the result (int32) onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Dup">
+ <summary>Copies the current topmost value on the evaluation stack, and then pushes the copy onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Endfilter">
+ <summary>Transfers control from the filter clause of an exception back to the Common Language Infrastructure (CLI) exception handler.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Endfinally">
+ <summary>Transfers control from the fault or finally clause of an exception block back to the Common Language Infrastructure (CLI) exception handler.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Initblk">
+ <summary>Initializes a specified block of memory at a specific address to a given size and initial value.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Initobj">
+ <summary>Initializes each field of the value type at a specified address to a null reference or a 0 of the appropriate primitive type.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Isinst">
+ <summary>Tests whether an object reference (type O) is an instance of a particular class.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Jmp">
+ <summary>Exits current method and jumps to specified method.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldarg">
+ <summary>Loads an argument (referenced by a specified index value) onto the stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldarg_0">
+ <summary>Loads the argument at index 0 onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldarg_1">
+ <summary>Loads the argument at index 1 onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldarg_2">
+ <summary>Loads the argument at index 2 onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldarg_3">
+ <summary>Loads the argument at index 3 onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldarg_S">
+ <summary>Loads the argument (referenced by a specified short form index) onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldarga">
+ <summary>Load an argument address onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldarga_S">
+ <summary>Load an argument address, in short form, onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldc_I4">
+ <summary>Pushes a supplied value of type int32 onto the evaluation stack as an int32.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldc_I4_0">
+ <summary>Pushes the integer value of 0 onto the evaluation stack as an int32.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldc_I4_1">
+ <summary>Pushes the integer value of 1 onto the evaluation stack as an int32.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldc_I4_2">
+ <summary>Pushes the integer value of 2 onto the evaluation stack as an int32.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldc_I4_3">
+ <summary>Pushes the integer value of 3 onto the evaluation stack as an int32.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldc_I4_4">
+ <summary>Pushes the integer value of 4 onto the evaluation stack as an int32.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldc_I4_5">
+ <summary>Pushes the integer value of 5 onto the evaluation stack as an int32.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldc_I4_6">
+ <summary>Pushes the integer value of 6 onto the evaluation stack as an int32.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldc_I4_7">
+ <summary>Pushes the integer value of 7 onto the evaluation stack as an int32.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldc_I4_8">
+ <summary>Pushes the integer value of 8 onto the evaluation stack as an int32.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldc_I4_M1">
+ <summary>Pushes the integer value of -1 onto the evaluation stack as an int32.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldc_I4_S">
+ <summary>Pushes the supplied int8 value onto the evaluation stack as an int32, short form.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldc_I8">
+ <summary>Pushes a supplied value of type int64 onto the evaluation stack as an int64.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldc_R4">
+ <summary>Pushes a supplied value of type float32 onto the evaluation stack as type F (float).</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldc_R8">
+ <summary>Pushes a supplied value of type float64 onto the evaluation stack as type F (float).</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldelem">
+ <summary>Loads the element at a specified array index onto the top of the evaluation stack as the type specified in the instruction.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldelem_I">
+ <summary>Loads the element with type native int at a specified array index onto the top of the evaluation stack as a native int.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldelem_I1">
+ <summary>Loads the element with type int8 at a specified array index onto the top of the evaluation stack as an int32.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldelem_I2">
+ <summary>Loads the element with type int16 at a specified array index onto the top of the evaluation stack as an int32.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldelem_I4">
+ <summary>Loads the element with type int32 at a specified array index onto the top of the evaluation stack as an int32.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldelem_I8">
+ <summary>Loads the element with type int64 at a specified array index onto the top of the evaluation stack as an int64.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldelem_R4">
+ <summary>Loads the element with type float32 at a specified array index onto the top of the evaluation stack as type F (float).</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldelem_R8">
+ <summary>Loads the element with type float64 at a specified array index onto the top of the evaluation stack as type F (float).</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldelem_Ref">
+ <summary>Loads the element containing an object reference at a specified array index onto the top of the evaluation stack as type O (object reference).</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldelem_U1">
+ <summary>Loads the element with type unsigned int8 at a specified array index onto the top of the evaluation stack as an int32.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldelem_U2">
+ <summary>Loads the element with type unsigned int16 at a specified array index onto the top of the evaluation stack as an int32.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldelem_U4">
+ <summary>Loads the element with type unsigned int32 at a specified array index onto the top of the evaluation stack as an int32.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldelema">
+ <summary>Loads the address of the array element at a specified array index onto the top of the evaluation stack as type &amp; (managed pointer).</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldfld">
+ <summary>Finds the value of a field in the object whose reference is currently on the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldflda">
+ <summary>Finds the address of a field in the object whose reference is currently on the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldftn">
+ <summary>Pushes an unmanaged pointer (type native int) to the native code implementing a specific method onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldind_I">
+ <summary>Loads a value of type native int as a native int onto the evaluation stack indirectly.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldind_I1">
+ <summary>Loads a value of type int8 as an int32 onto the evaluation stack indirectly.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldind_I2">
+ <summary>Loads a value of type int16 as an int32 onto the evaluation stack indirectly.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldind_I4">
+ <summary>Loads a value of type int32 as an int32 onto the evaluation stack indirectly.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldind_I8">
+ <summary>Loads a value of type int64 as an int64 onto the evaluation stack indirectly.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldind_R4">
+ <summary>Loads a value of type float32 as a type F (float) onto the evaluation stack indirectly.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldind_R8">
+ <summary>Loads a value of type float64 as a type F (float) onto the evaluation stack indirectly.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldind_Ref">
+ <summary>Loads an object reference as a type O (object reference) onto the evaluation stack indirectly.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldind_U1">
+ <summary>Loads a value of type unsigned int8 as an int32 onto the evaluation stack indirectly.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldind_U2">
+ <summary>Loads a value of type unsigned int16 as an int32 onto the evaluation stack indirectly.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldind_U4">
+ <summary>Loads a value of type unsigned int32 as an int32 onto the evaluation stack indirectly.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldlen">
+ <summary>Pushes the number of elements of a zero-based, one-dimensional array onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldloc">
+ <summary>Loads the local variable at a specific index onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldloc_0">
+ <summary>Loads the local variable at index 0 onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldloc_1">
+ <summary>Loads the local variable at index 1 onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldloc_2">
+ <summary>Loads the local variable at index 2 onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldloc_3">
+ <summary>Loads the local variable at index 3 onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldloc_S">
+ <summary>Loads the local variable at a specific index onto the evaluation stack, short form.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldloca">
+ <summary>Loads the address of the local variable at a specific index onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldloca_S">
+ <summary>Loads the address of the local variable at a specific index onto the evaluation stack, short form.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldnull">
+ <summary>Pushes a null reference (type O) onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldobj">
+ <summary>Copies the value type object pointed to by an address to the top of the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldsfld">
+ <summary>Pushes the value of a static field onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldsflda">
+ <summary>Pushes the address of a static field onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldstr">
+ <summary>Pushes a new object reference to a string literal stored in the metadata.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldtoken">
+ <summary>Converts a metadata token to its runtime representation, pushing it onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ldvirtftn">
+ <summary>Pushes an unmanaged pointer (type native int) to the native code implementing a particular virtual method associated with a specified object onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Leave">
+ <summary>Exits a protected region of code, unconditionally transferring control to a specific target instruction.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Leave_S">
+ <summary>Exits a protected region of code, unconditionally transferring control to a target instruction (short form).</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Localloc">
+ <summary>Allocates a certain number of bytes from the local dynamic memory pool and pushes the address (a transient pointer, type *) of the first allocated byte onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Mkrefany">
+ <summary>Pushes a typed reference to an instance of a specific type onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Mul">
+ <summary>Multiplies two values and pushes the result on the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Mul_Ovf">
+ <summary>Multiplies two integer values, performs an overflow check, and pushes the result onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Mul_Ovf_Un">
+ <summary>Multiplies two unsigned integer values, performs an overflow check, and pushes the result onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Neg">
+ <summary>Negates a value and pushes the result onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Newarr">
+ <summary>Pushes an object reference to a new zero-based, one-dimensional array whose elements are of a specific type onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Newobj">
+ <summary>Creates a new object or a new instance of a value type, pushing an object reference (type O) onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Nop">
+ <summary>Fills space if opcodes are patched. No meaningful operation is performed although a processing cycle can be consumed.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Not">
+ <summary>Computes the bitwise complement of the integer value on top of the stack and pushes the result onto the evaluation stack as the same type.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Or">
+ <summary>Compute the bitwise complement of the two integer values on top of the stack and pushes the result onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Pop">
+ <summary>Removes the value currently on top of the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Prefix1">
+ <summary>This is a reserved instruction.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Prefix2">
+ <summary>This is a reserved instruction.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Prefix3">
+ <summary>This is a reserved instruction.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Prefix4">
+ <summary>This is a reserved instruction.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Prefix5">
+ <summary>This is a reserved instruction.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Prefix6">
+ <summary>This is a reserved instruction.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Prefix7">
+ <summary>This is a reserved instruction.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Prefixref">
+ <summary>This is a reserved instruction.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Readonly">
+ <summary>Specifies that the subsequent array address operation performs no type check at run time, and that it returns a managed pointer whose mutability is restricted.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Refanytype">
+ <summary>Retrieves the type token embedded in a typed reference.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Refanyval">
+ <summary>Retrieves the address (type &amp;) embedded in a typed reference.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Rem">
+ <summary>Divides two values and pushes the remainder onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Rem_Un">
+ <summary>Divides two unsigned values and pushes the remainder onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Ret">
+ <summary>Returns from the current method, pushing a return value (if present) from the callee's evaluation stack onto the caller's evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Rethrow">
+ <summary>Rethrows the current exception.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Shl">
+ <summary>Shifts an integer value to the left (in zeroes) by a specified number of bits, pushing the result onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Shr">
+ <summary>Shifts an integer value (in sign) to the right by a specified number of bits, pushing the result onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Shr_Un">
+ <summary>Shifts an unsigned integer value (in zeroes) to the right by a specified number of bits, pushing the result onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Sizeof">
+ <summary>Pushes the size, in bytes, of a supplied value type onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Starg">
+ <summary>Stores the value on top of the evaluation stack in the argument slot at a specified index.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Starg_S">
+ <summary>Stores the value on top of the evaluation stack in the argument slot at a specified index, short form.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Stelem">
+ <summary>Replaces the array element at a given index with the value on the evaluation stack, whose type is specified in the instruction.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Stelem_I">
+ <summary>Replaces the array element at a given index with the native int value on the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Stelem_I1">
+ <summary>Replaces the array element at a given index with the int8 value on the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Stelem_I2">
+ <summary>Replaces the array element at a given index with the int16 value on the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Stelem_I4">
+ <summary>Replaces the array element at a given index with the int32 value on the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Stelem_I8">
+ <summary>Replaces the array element at a given index with the int64 value on the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Stelem_R4">
+ <summary>Replaces the array element at a given index with the float32 value on the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Stelem_R8">
+ <summary>Replaces the array element at a given index with the float64 value on the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Stelem_Ref">
+ <summary>Replaces the array element at a given index with the object ref value (type O) on the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Stfld">
+ <summary>Replaces the value stored in the field of an object reference or pointer with a new value.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Stind_I">
+ <summary>Stores a value of type native int at a supplied address.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Stind_I1">
+ <summary>Stores a value of type int8 at a supplied address.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Stind_I2">
+ <summary>Stores a value of type int16 at a supplied address.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Stind_I4">
+ <summary>Stores a value of type int32 at a supplied address.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Stind_I8">
+ <summary>Stores a value of type int64 at a supplied address.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Stind_R4">
+ <summary>Stores a value of type float32 at a supplied address.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Stind_R8">
+ <summary>Stores a value of type float64 at a supplied address.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Stind_Ref">
+ <summary>Stores a object reference value at a supplied address.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Stloc">
+ <summary>Pops the current value from the top of the evaluation stack and stores it in a the local variable list at a specified index.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Stloc_0">
+ <summary>Pops the current value from the top of the evaluation stack and stores it in a the local variable list at index 0.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Stloc_1">
+ <summary>Pops the current value from the top of the evaluation stack and stores it in a the local variable list at index 1.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Stloc_2">
+ <summary>Pops the current value from the top of the evaluation stack and stores it in a the local variable list at index 2.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Stloc_3">
+ <summary>Pops the current value from the top of the evaluation stack and stores it in a the local variable list at index 3.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Stloc_S">
+ <summary>Pops the current value from the top of the evaluation stack and stores it in a the local variable list at <paramref name="index">index</paramref> (short form).</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Stobj">
+ <summary>Copies a value of a specified type from the evaluation stack into a supplied memory address.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Stsfld">
+ <summary>Replaces the value of a static field with a value from the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Sub">
+ <summary>Subtracts one value from another and pushes the result onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Sub_Ovf">
+ <summary>Subtracts one integer value from another, performs an overflow check, and pushes the result onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Sub_Ovf_Un">
+ <summary>Subtracts one unsigned integer value from another, performs an overflow check, and pushes the result onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Switch">
+ <summary>Implements a jump table.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Tailcall">
+ <summary>Performs a postfixed method call instruction such that the current method's stack frame is removed before the actual call instruction is executed.</summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.Reflection.Emit.OpCodes.TakesSingleByteArgument(System.Reflection.Emit.OpCode)">
+ <summary>Returns true or false if the supplied opcode takes a single byte argument.</summary>
+ <param name="inst">An instance of an Opcode object.</param>
+ <returns>True or false.</returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Throw">
+ <summary>Throws the exception object currently on the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Unaligned">
+ <summary>Indicates that an address currently atop the evaluation stack might not be aligned to the natural size of the immediately following ldind, stind, ldfld, stfld, ldobj, stobj, initblk, or cpblk instruction.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Unbox">
+ <summary>Converts the boxed representation of a value type to its unboxed form.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Unbox_Any">
+ <summary>Converts the boxed representation of a type specified in the instruction to its unboxed form.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Volatile">
+ <summary>Specifies that an address currently atop the evaluation stack might be volatile, and the results of reading that location cannot be cached or that multiple stores to that location cannot be suppressed.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodes.Xor">
+ <summary>Computes the bitwise XOR of the top two values on the evaluation stack, pushing the result onto the evaluation stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.Reflection.Emit.OpCodeType">
+ <summary>Describes the types of the Microsoft intermediate language (MSIL) instructions.</summary>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodeType.Annotation">
+ <summary>This enumerator value is reserved and should not be used.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodeType.Macro">
+ <summary>These are Microsoft intermediate language (MSIL) instructions that are used as a synonym for other MSIL instructions. For example, ldarg.0 represents the ldarg instruction with an argument of 0.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodeType.Nternal">
+ <summary>Describes a reserved Microsoft intermediate language (MSIL) instruction.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodeType.Objmodel">
+ <summary>Describes a Microsoft intermediate language (MSIL) instruction that applies to objects.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodeType.Prefix">
+ <summary>Describes a prefix instruction that modifies the behavior of the following instruction.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OpCodeType.Primitive">
+ <summary>Describes a built-in instruction.</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.Reflection.Emit.OperandType">
+ <summary>Describes the operand type of Microsoft intermediate language (MSIL) instruction.</summary>
+ </member>
+ <member name="F:System.Reflection.Emit.OperandType.InlineBrTarget">
+ <summary>The operand is a 32-bit integer branch target.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OperandType.InlineField">
+ <summary>The operand is a 32-bit metadata token.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OperandType.InlineI">
+ <summary>The operand is a 32-bit integer.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OperandType.InlineI8">
+ <summary>The operand is a 64-bit integer.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OperandType.InlineMethod">
+ <summary>The operand is a 32-bit metadata token.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OperandType.InlineNone">
+ <summary>No operand.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OperandType.InlinePhi">
+ <summary>The operand is reserved and should not be used.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OperandType.InlineR">
+ <summary>The operand is a 64-bit IEEE floating point number.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OperandType.InlineSig">
+ <summary>The operand is a 32-bit metadata signature token.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OperandType.InlineString">
+ <summary>The operand is a 32-bit metadata string token.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OperandType.InlineSwitch">
+ <summary>The operand is the 32-bit integer argument to a switch instruction.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OperandType.InlineTok">
+ <summary>The operand is a FieldRef, MethodRef, or TypeRef token.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OperandType.InlineType">
+ <summary>The operand is a 32-bit metadata token.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OperandType.InlineVar">
+ <summary>The operand is 16-bit integer containing the ordinal of a local variable or an argument.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OperandType.ShortInlineBrTarget">
+ <summary>The operand is an 8-bit integer branch target.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OperandType.ShortInlineI">
+ <summary>The operand is an 8-bit integer.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OperandType.ShortInlineR">
+ <summary>The operand is a 32-bit IEEE floating point number.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.OperandType.ShortInlineVar">
+ <summary>The operand is an 8-bit integer containing the ordinal of a local variable or an argumenta.</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.Reflection.Emit.PackingSize">
+ <summary>Specifies one of two factors that determine the memory alignment of fields when a type is marshaled.</summary>
+ </member>
+ <member name="F:System.Reflection.Emit.PackingSize.Size1">
+ <summary>The packing size is 1 byte.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.PackingSize.Size128">
+ <summary>The packing size is 128 bytes.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.PackingSize.Size16">
+ <summary>The packing size is 16 bytes.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.PackingSize.Size2">
+ <summary>The packing size is 2 bytes.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.PackingSize.Size32">
+ <summary>The packing size is 32 bytes.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.PackingSize.Size4">
+ <summary>The packing size is 4 bytes.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.PackingSize.Size64">
+ <summary>The packing size is 64 bytes.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.PackingSize.Size8">
+ <summary>The packing size is 8 bytes.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.PackingSize.Unspecified">
+ <summary>The packing size is not specified.</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.Reflection.Emit.StackBehaviour">
+ <summary>Describes how values are pushed onto a stack or popped off a stack.</summary>
+ </member>
+ <member name="F:System.Reflection.Emit.StackBehaviour.Pop0">
+ <summary>No values are popped off the stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.StackBehaviour.Pop1">
+ <summary>Pops one value off the stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.StackBehaviour.Pop1_pop1">
+ <summary>Pops 1 value off the stack for the first operand, and 1 value of the stack for the second operand.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.StackBehaviour.Popi">
+ <summary>Pops a 32-bit integer off the stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.StackBehaviour.Popi_pop1">
+ <summary>Pops a 32-bit integer off the stack for the first operand, and a value off the stack for the second operand.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.StackBehaviour.Popi_popi">
+ <summary>Pops a 32-bit integer off the stack for the first operand, and a 32-bit integer off the stack for the second operand.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.StackBehaviour.Popi_popi_popi">
+ <summary>Pops a 32-bit integer off the stack for the first operand, a 32-bit integer off the stack for the second operand, and a 32-bit integer off the stack for the third operand.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.StackBehaviour.Popi_popi8">
+ <summary>Pops a 32-bit integer off the stack for the first operand, and a 64-bit integer off the stack for the second operand.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.StackBehaviour.Popi_popr4">
+ <summary>Pops a 32-bit integer off the stack for the first operand, and a 32-bit floating point number off the stack for the second operand.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.StackBehaviour.Popi_popr8">
+ <summary>Pops a 32-bit integer off the stack for the first operand, and a 64-bit floating point number off the stack for the second operand.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.StackBehaviour.Popref">
+ <summary>Pops a reference off the stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.StackBehaviour.Popref_pop1">
+ <summary>Pops a reference off the stack for the first operand, and a value off the stack for the second operand.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.StackBehaviour.Popref_popi">
+ <summary>Pops a reference off the stack for the first operand, and a 32-bit integer off the stack for the second operand.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.StackBehaviour.Popref_popi_pop1">
+ <summary>Pops a reference off the stack for the first operand, a value off the stack for the second operand, and a 32-bit integer off the stack for the third operand.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.StackBehaviour.Popref_popi_popi">
+ <summary>Pops a reference off the stack for the first operand, a value off the stack for the second operand, and a value off the stack for the third operand.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.StackBehaviour.Popref_popi_popi8">
+ <summary>Pops a reference off the stack for the first operand, a value off the stack for the second operand, and a 64-bit integer off the stack for the third operand.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.StackBehaviour.Popref_popi_popr4">
+ <summary>Pops a reference off the stack for the first operand, a value off the stack for the second operand, and a 32-bit integer off the stack for the third operand.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.StackBehaviour.Popref_popi_popr8">
+ <summary>Pops a reference off the stack for the first operand, a value off the stack for the second operand, and a 64-bit floating point number off the stack for the third operand.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.StackBehaviour.Popref_popi_popref">
+ <summary>Pops a reference off the stack for the first operand, a value off the stack for the second operand, and a reference off the stack for the third operand.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.StackBehaviour.Push0">
+ <summary>No values are pushed onto the stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.StackBehaviour.Push1">
+ <summary>Pushes one value onto the stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.StackBehaviour.Push1_push1">
+ <summary>Pushes 1 value onto the stack for the first operand, and 1 value onto the stack for the second operand.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.StackBehaviour.Pushi">
+ <summary>Pushes a 32-bit integer onto the stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.StackBehaviour.Pushi8">
+ <summary>Pushes a 64-bit integer onto the stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.StackBehaviour.Pushr4">
+ <summary>Pushes a 32-bit floating point number onto the stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.StackBehaviour.Pushr8">
+ <summary>Pushes a 64-bit floating point number onto the stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.StackBehaviour.Pushref">
+ <summary>Pushes a reference onto the stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.StackBehaviour.Varpop">
+ <summary>Pops a variable off the stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.Emit.StackBehaviour.Varpush">
+ <summary>Pushes a variable onto the stack.</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.Reflection.EventAttributes">
+ <summary>Specifies the attributes of an event.</summary>
+ </member>
+ <member name="F:System.Reflection.EventAttributes.None">
+ <summary>Specifies that the event has no attributes.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.EventAttributes.RTSpecialName">
+ <summary>Specifies that the common language runtime should check name encoding.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.EventAttributes.SpecialName">
+ <summary>Specifies that the event is special in a way described by the name.</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.Reflection.FieldAttributes">
+ <summary>Specifies flags that describe the attributes of a field.</summary>
+ </member>
+ <member name="F:System.Reflection.FieldAttributes.Assembly">
+ <summary>Specifies that the field is accessible throughout the assembly.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.FieldAttributes.FamANDAssem">
+ <summary>Specifies that the field is accessible only by subtypes in this assembly.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.FieldAttributes.Family">
+ <summary>Specifies that the field is accessible only by type and subtypes.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.FieldAttributes.FamORAssem">
+ <summary>Specifies that the field is accessible by subtypes anywhere, as well as throughout this assembly.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.FieldAttributes.FieldAccessMask">
+ <summary>Specifies the access level of a given field.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.FieldAttributes.HasDefault">
+ <summary>Specifies that the field has a default value.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.FieldAttributes.HasFieldMarshal">
+ <summary>Specifies that the field has marshaling information.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.FieldAttributes.HasFieldRVA">
+ <summary>Specifies that the field has a relative virtual address (RVA). The RVA is the location of the method body in the current image, as an address relative to the start of the image file in which it is located.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.FieldAttributes.InitOnly">
+ <summary>Specifies that the field is initialized only, and can be set only in the body of a constructor.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.FieldAttributes.Literal">
+ <summary>Specifies that the field's value is a compile-time (static or early bound) constant. Any attempt to set it throws a <see cref="T:System.FieldAccessException"></see>.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.FieldAttributes.NotSerialized">
+ <summary>Specifies that the field does not have to be serialized when the type is remoted.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.FieldAttributes.PinvokeImpl">
+ <summary>Reserved for future use.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.FieldAttributes.Private">
+ <summary>Specifies that the field is accessible only by the parent type.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.FieldAttributes.PrivateScope">
+ <summary>Specifies that the field cannot be referenced.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.FieldAttributes.Public">
+ <summary>Specifies that the field is accessible by any member for whom this scope is visible.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.FieldAttributes.RTSpecialName">
+ <summary>Specifies that the common language runtime (metadata internal APIs) should check the name encoding.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.FieldAttributes.SpecialName">
+ <summary>Specifies a special method, with the name describing how the method is special.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.FieldAttributes.Static">
+ <summary>Specifies that the field represents the defined type, or else it is per-instance.</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.Reflection.GenericParameterAttributes">
+ <summary>Describes the constraints on a generic type parameter of a generic type or method.</summary>
+ </member>
+ <member name="F:System.Reflection.GenericParameterAttributes.Contravariant">
+ <summary>The generic type parameter is contravariant. A contravariant type parameter can appear as a parameter type in method signatures.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.GenericParameterAttributes.Covariant">
+ <summary>The generic type parameter is covariant. A covariant type parameter can appear as the result type of a method, the type of a read-only field, a declared base type, or an implemented interface.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.GenericParameterAttributes.DefaultConstructorConstraint">
+ <summary>A type can be substituted for the generic type parameter only if it has a parameterless constructor.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.GenericParameterAttributes.None">
+ <summary>There are no special flags.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.GenericParameterAttributes.NotNullableValueTypeConstraint">
+ <summary>A type can be substituted for the generic type parameter only if it is a value type and is not nullable.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.GenericParameterAttributes.ReferenceTypeConstraint">
+ <summary>A type can be substituted for the generic type parameter only if it is a reference type.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.GenericParameterAttributes.SpecialConstraintMask">
+ <summary>Selects the combination of all special constraint flags. This value is the result of using logical OR to combine the following flags: <see cref="F:System.Reflection.GenericParameterAttributes.DefaultConstructorConstraint"></see>, <see cref="F:System.Reflection.GenericParameterAttributes.ReferenceTypeConstraint"></see>, and <see cref="F:System.Reflection.GenericParameterAttributes.NotNullableValueTypeConstraint"></see>.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.GenericParameterAttributes.VarianceMask">
+ <summary>Selects the combination of all variance flags. This value is the result of using logical OR to combine the following flags: <see cref="F:System.Reflection.GenericParameterAttributes.Contravariant"></see> and <see cref="F:System.Reflection.GenericParameterAttributes.Covariant"></see>.</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.Reflection.MethodAttributes">
+ <summary>Specifies flags for method attributes. These flags are defined in the corhdr.h file.</summary>
+ </member>
+ <member name="F:System.Reflection.MethodAttributes.Abstract">
+ <summary>Indicates that the class does not provide an implementation of this method.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.MethodAttributes.Assembly">
+ <summary>Indicates that the method is accessible to any class of this assembly.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.MethodAttributes.CheckAccessOnOverride">
+ <summary>Indicates that the method can only be overridden when it is also accessible.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.MethodAttributes.FamANDAssem">
+ <summary>Indicates that the method is accessible to members of this type and its derived types that are in this assembly only.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.MethodAttributes.Family">
+ <summary>Indicates that the method is accessible only to members of this class and its derived classes.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.MethodAttributes.FamORAssem">
+ <summary>Indicates that the method is accessible to derived classes anywhere, as well as to any class in the assembly.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.MethodAttributes.Final">
+ <summary>Indicates that the method cannot be overridden.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.MethodAttributes.HasSecurity">
+ <summary>Indicates that the method has security associated with it. Reserved flag for runtime use only.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.MethodAttributes.HideBySig">
+ <summary>Indicates that the method hides by name and signature; otherwise, by name only.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.MethodAttributes.MemberAccessMask">
+ <summary>Retrieves accessibility information.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.MethodAttributes.NewSlot">
+ <summary>Indicates that the method always gets a new slot in the vtable.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.MethodAttributes.PinvokeImpl">
+ <summary>Indicates that the method implementation is forwarded through PInvoke (Platform Invocation Services).</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.MethodAttributes.Private">
+ <summary>Indicates that the method is accessible only to the current class.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.MethodAttributes.PrivateScope">
+ <summary>Indicates that the member cannot be referenced.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.MethodAttributes.Public">
+ <summary>Indicates that the method is accessible to any object for which this object is in scope.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.MethodAttributes.RequireSecObject">
+ <summary>Indicates that the method calls another method containing security code. Reserved flag for runtime use only.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.MethodAttributes.ReuseSlot">
+ <summary>Indicates that the method will reuse an existing slot in the vtable. This is the default behavior.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.MethodAttributes.RTSpecialName">
+ <summary>Indicates that the common language runtime checks the name encoding.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.MethodAttributes.SpecialName">
+ <summary>Indicates that the method is special. The name describes how this method is special.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.MethodAttributes.Static">
+ <summary>Indicates that the method is defined on the type; otherwise, it is defined per instance.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.MethodAttributes.UnmanagedExport">
+ <summary>Indicates that the managed method is exported by thunk to unmanaged code.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.MethodAttributes.Virtual">
+ <summary>Indicates that the method is virtual.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.MethodAttributes.VtableLayoutMask">
+ <summary>Retrieves vtable attributes.</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.Reflection.MethodImplAttributes">
+ <summary>Specifies flags for the attributes of a method implementation.</summary>
+ </member>
+ <member name="F:System.Reflection.MethodImplAttributes.AggressiveInlining">
+ <summary>Specifies that the method should be inlined wherever possible.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.MethodImplAttributes.CodeTypeMask">
+ <summary>Specifies flags about code type.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.MethodImplAttributes.ForwardRef">
+ <summary>Specifies that the method is not defined.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.MethodImplAttributes.IL">
+ <summary>Specifies that the method implementation is in Microsoft intermediate language (MSIL).</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.MethodImplAttributes.InternalCall">
+ <summary>Specifies an internal call.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.MethodImplAttributes.Managed">
+ <summary>Specifies that the method is implemented in managed code.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.MethodImplAttributes.ManagedMask">
+ <summary>Specifies whether the method is implemented in managed or unmanaged code.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.MethodImplAttributes.Native">
+ <summary>Specifies that the method implementation is native.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.MethodImplAttributes.NoInlining">
+ <summary>Specifies that the method cannot be inlined.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.MethodImplAttributes.NoOptimization">
+ <summary>Specifies that the method is not optimized by the just-in-time (JIT) compiler or by native code generation (see <see cref="~/docs/framework/tools/ngen-exe-native-image-generator.md">Ngen.exe</see>) when debugging possible code generation problems.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.MethodImplAttributes.OPTIL">
+ <summary>Specifies that the method implementation is in Optimized Intermediate Language (OPTIL).</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.MethodImplAttributes.PreserveSig">
+ <summary>Specifies that the method signature is exported exactly as declared.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.MethodImplAttributes.Runtime">
+ <summary>Specifies that the method implementation is provided by the runtime.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.MethodImplAttributes.Synchronized">
+ <summary>Specifies that the method is single-threaded through the body. Static methods (Shared in Visual Basic) lock on the type, whereas instance methods lock on the instance. You can also use the C# <see cref="~/docs/csharp/language-reference/keywords/lock-statement.md">lock statement</see> or the Visual Basic <see cref="~/docs/visual-basic/language-reference/statements/synclock-statement.md">SyncLock statement</see> for this purpose.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.MethodImplAttributes.Unmanaged">
+ <summary>Specifies that the method is implemented in unmanaged code.</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.Reflection.ParameterAttributes">
+ <summary>Defines the attributes that can be associated with a parameter. These are defined in CorHdr.h.</summary>
+ </member>
+ <member name="F:System.Reflection.ParameterAttributes.HasDefault">
+ <summary>Specifies that the parameter has a default value.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.ParameterAttributes.HasFieldMarshal">
+ <summary>Specifies that the parameter has field marshaling information.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.ParameterAttributes.In">
+ <summary>Specifies that the parameter is an input parameter.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.ParameterAttributes.Lcid">
+ <summary>Specifies that the parameter is a locale identifier (lcid).</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.ParameterAttributes.None">
+ <summary>Specifies that there is no parameter attribute.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.ParameterAttributes.Optional">
+ <summary>Specifies that the parameter is optional.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.ParameterAttributes.Out">
+ <summary>Specifies that the parameter is an output parameter.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.ParameterAttributes.Retval">
+ <summary>Specifies that the parameter is a return value.</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.Reflection.PropertyAttributes">
+ <summary>Defines the attributes that can be associated with a property. These attribute values are defined in corhdr.h.</summary>
+ </member>
+ <member name="F:System.Reflection.PropertyAttributes.HasDefault">
+ <summary>Specifies that the property has a default value.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.PropertyAttributes.None">
+ <summary>Specifies that no attributes are associated with a property.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.PropertyAttributes.RTSpecialName">
+ <summary>Specifies that the metadata internal APIs check the name encoding.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.PropertyAttributes.SpecialName">
+ <summary>Specifies that the property is special, with the name describing how the property is special.</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.Reflection.TypeAttributes">
+ <summary>Specifies type attributes.</summary>
+ </member>
+ <member name="F:System.Reflection.TypeAttributes.Abstract">
+ <summary>Specifies that the type is abstract.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.TypeAttributes.AnsiClass">
+ <summary>LPTSTR is interpreted as ANSI.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.TypeAttributes.AutoClass">
+ <summary>LPTSTR is interpreted automatically.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.TypeAttributes.AutoLayout">
+ <summary>Specifies that class fields are automatically laid out by the common language runtime.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.TypeAttributes.BeforeFieldInit">
+ <summary>Specifies that calling static methods of the type does not force the system to initialize the type.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.TypeAttributes.Class">
+ <summary>Specifies that the type is a class.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.TypeAttributes.ClassSemanticsMask">
+ <summary>Specifies class semantics information; the current class is contextful (else agile).</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.TypeAttributes.CustomFormatClass">
+ <summary>LPSTR is interpreted by some implementation-specific means, which includes the possibility of throwing a <see cref="T:System.NotSupportedException"></see>. Not used in the Microsoft implementation of the .NET Framework.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.TypeAttributes.CustomFormatMask">
+ <summary>Used to retrieve non-standard encoding information for native interop. The meaning of the values of these 2 bits is unspecified. Not used in the Microsoft implementation of the .NET Framework.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.TypeAttributes.ExplicitLayout">
+ <summary>Specifies that class fields are laid out at the specified offsets.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.TypeAttributes.HasSecurity">
+ <summary>Type has security associate with it.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.TypeAttributes.Import">
+ <summary>Specifies that the class or interface is imported from another module.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.TypeAttributes.Interface">
+ <summary>Specifies that the type is an interface.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.TypeAttributes.LayoutMask">
+ <summary>Specifies class layout information.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.TypeAttributes.NestedAssembly">
+ <summary>Specifies that the class is nested with assembly visibility, and is thus accessible only by methods within its assembly.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.TypeAttributes.NestedFamANDAssem">
+ <summary>Specifies that the class is nested with assembly and family visibility, and is thus accessible only by methods lying in the intersection of its family and assembly.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.TypeAttributes.NestedFamily">
+ <summary>Specifies that the class is nested with family visibility, and is thus accessible only by methods within its own type and any derived types.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.TypeAttributes.NestedFamORAssem">
+ <summary>Specifies that the class is nested with family or assembly visibility, and is thus accessible only by methods lying in the union of its family and assembly.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.TypeAttributes.NestedPrivate">
+ <summary>Specifies that the class is nested with private visibility.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.TypeAttributes.NestedPublic">
+ <summary>Specifies that the class is nested with public visibility.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.TypeAttributes.NotPublic">
+ <summary>Specifies that the class is not public.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.TypeAttributes.Public">
+ <summary>Specifies that the class is public.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.TypeAttributes.RTSpecialName">
+ <summary>Runtime should check name encoding.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.TypeAttributes.Sealed">
+ <summary>Specifies that the class is concrete and cannot be extended.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.TypeAttributes.SequentialLayout">
+ <summary>Specifies that class fields are laid out sequentially, in the order that the fields were emitted to the metadata.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.TypeAttributes.Serializable">
+ <summary>Specifies that the class can be serialized.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.TypeAttributes.SpecialName">
+ <summary>Specifies that the class is special in a way denoted by the name.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.TypeAttributes.StringFormatMask">
+ <summary>Used to retrieve string information for native interoperability.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.TypeAttributes.UnicodeClass">
+ <summary>LPTSTR is interpreted as UNICODE.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.TypeAttributes.VisibilityMask">
+ <summary>Specifies type visibility information.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Reflection.TypeAttributes.WindowsRuntime">
+ <summary>Specifies a Windows Runtime type.</summary>
+ <returns></returns>
+ </member>
+ </members>
+</doc></span> \ No newline at end of file