Revert "PR-5360"
[platform/core/csapi/tizenfx.git] / pkg / Tizen.NET.API11 / build / tizen11.0 / ref / System.Reflection.Emit.Lightweight.xml
index 07eee4b..4c976e7 100755 (executable)
@@ -7,6 +7,10 @@
     <member name="T:System.Reflection.Emit.DynamicILInfo">
       <summary>Provides support for alternative ways to generate the Microsoft intermediate language (MSIL) and metadata for a dynamic method, including methods for creating tokens and for inserting the code, exception handling, and local variable signature blobs.</summary>
     </member>
+    <member name="P:System.Reflection.Emit.DynamicILInfo.DynamicMethod">
+      <summary>Gets the dynamic method whose body is generated by the current instance.</summary>
+      <returns>A <see cref="T:System.Reflection.Emit.DynamicMethod" /> object representing the dynamic method for which the current <see cref="T:System.Reflection.Emit.DynamicILInfo" /> object is generating code.</returns>
+    </member>
     <member name="M:System.Reflection.Emit.DynamicILInfo.GetTokenFor(System.Byte[])">
       <summary>Gets a token, valid in the scope of the current <see cref="T:System.Reflection.Emit.DynamicILInfo" />, representing the signature for the associated dynamic method.</summary>
       <param name="signature">An array that contains the signature.</param>
       <summary>Sets the local variable signature that describes the layout of local variables for the associated dynamic method.</summary>
       <param name="localSignature">An array that contains the layout of local variables for the associated <see cref="T:System.Reflection.Emit.DynamicMethod" />.</param>
     </member>
-    <member name="P:System.Reflection.Emit.DynamicILInfo.DynamicMethod">
-      <summary>Gets the dynamic method whose body is generated by the current instance.</summary>
-      <returns>A <see cref="T:System.Reflection.Emit.DynamicMethod" /> object representing the dynamic method for which the current <see cref="T:System.Reflection.Emit.DynamicILInfo" /> object is generating code.</returns>
-    </member>
     <member name="T:System.Reflection.Emit.DynamicMethod">
       <summary>Defines and represents a dynamic method that can be compiled, executed, and discarded. Discarded methods are available for garbage collection.</summary>
     </member>
       <param name="m">A <see cref="T:System.Reflection.Module" /> representing the module with which the dynamic method is to be logically associated.</param>
       <param name="skipVisibility">
         <see langword="true" /> to skip JIT visibility checks on types and members accessed by the MSIL of the dynamic method; otherwise, <see langword="false" />.</param>
-      <exception cref="T:System.ArgumentException">An element of <paramref name="parameterTypes" /> is <see langword="null" /> or <see cref="T:System.Void" />.  
-  
- -or-  
-  
- <paramref name="m" /> is a module that provides anonymous hosting for dynamic methods.</exception>
+      <exception cref="T:System.ArgumentException">An element of <paramref name="parameterTypes" /> is <see langword="null" /> or <see cref="T:System.Void" />.
+-or-
+<paramref name="m" /> is a module that provides anonymous hosting for dynamic methods.</exception>
       <exception cref="T:System.ArgumentNullException">
-        <paramref name="name" /> is <see langword="null" />.  
-  
- -or-  
-  
- <paramref name="m" /> is <see langword="null" />.</exception>
+        <paramref name="name" /> is <see langword="null" />.
+-or-
+<paramref name="m" /> is <see langword="null" />.</exception>
       <exception cref="T:System.NotSupportedException">
-        <paramref name="attributes" /> is a combination of flags other than <see cref="F:System.Reflection.MethodAttributes.Public" /> and <see cref="F:System.Reflection.MethodAttributes.Static" />.  
-  
- -or-  
-  
- <paramref name="callingConvention" /> is not <see cref="F:System.Reflection.CallingConventions.Standard" />.  
-  
- -or-  
-  
- <paramref name="returnType" /> is a type for which <see cref="P:System.Type.IsByRef" /> returns <see langword="true" />.</exception>
+        <paramref name="attributes" /> is a combination of flags other than <see cref="F:System.Reflection.MethodAttributes.Public" /> and <see cref="F:System.Reflection.MethodAttributes.Static" />.
+-or-
+<paramref name="callingConvention" /> is not <see cref="F:System.Reflection.CallingConventions.Standard" />.
+-or-
+<paramref name="returnType" /> is a type for which <see cref="P:System.Type.IsByRef" /> returns <see langword="true" />.</exception>
     </member>
     <member name="M:System.Reflection.Emit.DynamicMethod.#ctor(System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type,System.Boolean)">
       <summary>Creates a dynamic method, specifying the method name, attributes, calling convention, return type, parameter types, the type with which the dynamic method is logically associated, and whether just-in-time (JIT) visibility checks should be skipped for types and members accessed by the Microsoft intermediate language (MSIL) of the dynamic method.</summary>
       <param name="owner">A <see cref="T:System.Type" /> with which the dynamic method is logically associated. The dynamic method has access to all members of the type.</param>
       <param name="skipVisibility">
         <see langword="true" /> to skip JIT visibility checks on types and members accessed by the MSIL of the dynamic method; otherwise, <see langword="false" />.</param>
-      <exception cref="T:System.ArgumentException">An element of <paramref name="parameterTypes" /> is <see langword="null" /> or <see cref="T:System.Void" />.  
-  
- -or-  
-  
- <paramref name="owner" /> is an interface, an array, an open generic type, or a type parameter of a generic type or method.</exception>
+      <exception cref="T:System.ArgumentException">An element of <paramref name="parameterTypes" /> is <see langword="null" /> or <see cref="T:System.Void" />.
+-or-
+<paramref name="owner" /> is an interface, an array, an open generic type, or a type parameter of a generic type or method.</exception>
       <exception cref="T:System.ArgumentNullException">
-        <paramref name="name" /> is <see langword="null" />.  
-  
- -or-  
-  
- <paramref name="owner" /> is <see langword="null" />.</exception>
+        <paramref name="name" /> is <see langword="null" />.
+-or-
+<paramref name="owner" /> is <see langword="null" />.</exception>
       <exception cref="T:System.NotSupportedException">
-        <paramref name="attributes" /> is a combination of flags other than <see cref="F:System.Reflection.MethodAttributes.Public" /> and <see cref="F:System.Reflection.MethodAttributes.Static" />.  
-  
- -or-  
-  
- <paramref name="callingConvention" /> is not <see cref="F:System.Reflection.CallingConventions.Standard" />.  
-  
- -or-  
-  
- <paramref name="returnType" /> is a type for which <see cref="P:System.Type.IsByRef" /> returns <see langword="true" />.</exception>
+        <paramref name="attributes" /> is a combination of flags other than <see cref="F:System.Reflection.MethodAttributes.Public" /> and <see cref="F:System.Reflection.MethodAttributes.Static" />.
+-or-
+<paramref name="callingConvention" /> is not <see cref="F:System.Reflection.CallingConventions.Standard" />.
+-or-
+<paramref name="returnType" /> is a type for which <see cref="P:System.Type.IsByRef" /> returns <see langword="true" />.</exception>
     </member>
     <member name="M:System.Reflection.Emit.DynamicMethod.#ctor(System.String,System.Type,System.Type[])">
       <summary>Initializes an anonymously hosted dynamic method, specifying the method name, return type, and parameter types.</summary>
       <param name="returnType">A <see cref="T:System.Type" /> object that specifies the return type of the dynamic method, or <see langword="null" /> if the method has no return type.</param>
       <param name="parameterTypes">An array of <see cref="T:System.Type" /> objects specifying the types of the parameters of the dynamic method, or <see langword="null" /> if the method has no parameters.</param>
       <param name="m">A <see cref="T:System.Reflection.Module" /> representing the module with which the dynamic method is to be logically associated.</param>
-      <exception cref="T:System.ArgumentException">An element of <paramref name="parameterTypes" /> is <see langword="null" /> or <see cref="T:System.Void" />.  
-  
- -or-  
-  
- <paramref name="m" /> is a module that provides anonymous hosting for dynamic methods.</exception>
+      <exception cref="T:System.ArgumentException">An element of <paramref name="parameterTypes" /> is <see langword="null" /> or <see cref="T:System.Void" />.
+-or-
+<paramref name="m" /> is a module that provides anonymous hosting for dynamic methods.</exception>
       <exception cref="T:System.ArgumentNullException">
-        <paramref name="name" /> is <see langword="null" />.  
-  
- -or-  
-  
- <paramref name="m" /> is <see langword="null" />.</exception>
+        <paramref name="name" /> is <see langword="null" />.
+-or-
+<paramref name="m" /> is <see langword="null" />.</exception>
       <exception cref="T:System.NotSupportedException">
         <paramref name="returnType" /> is a type for which <see cref="P:System.Type.IsByRef" /> returns <see langword="true" />.</exception>
     </member>
       <param name="m">A <see cref="T:System.Reflection.Module" /> representing the module with which the dynamic method is to be logically associated.</param>
       <param name="skipVisibility">
         <see langword="true" /> to skip JIT visibility checks on types and members accessed by the MSIL of the dynamic method.</param>
-      <exception cref="T:System.ArgumentException">An element of <paramref name="parameterTypes" /> is <see langword="null" /> or <see cref="T:System.Void" />.  
-  
- -or-  
-  
- <paramref name="m" /> is a module that provides anonymous hosting for dynamic methods.</exception>
+      <exception cref="T:System.ArgumentException">An element of <paramref name="parameterTypes" /> is <see langword="null" /> or <see cref="T:System.Void" />.
+-or-
+<paramref name="m" /> is a module that provides anonymous hosting for dynamic methods.</exception>
       <exception cref="T:System.ArgumentNullException">
-        <paramref name="name" /> is <see langword="null" />.  
-  
- -or-  
-  
- <paramref name="m" /> is <see langword="null" />.</exception>
+        <paramref name="name" /> is <see langword="null" />.
+-or-
+<paramref name="m" /> is <see langword="null" />.</exception>
       <exception cref="T:System.NotSupportedException">
         <paramref name="returnType" /> is a type for which <see cref="P:System.Type.IsByRef" /> returns <see langword="true" />.</exception>
     </member>
       <param name="returnType">A <see cref="T:System.Type" /> object that specifies the return type of the dynamic method, or <see langword="null" /> if the method has no return type.</param>
       <param name="parameterTypes">An array of <see cref="T:System.Type" /> objects specifying the types of the parameters of the dynamic method, or <see langword="null" /> if the method has no parameters.</param>
       <param name="owner">A <see cref="T:System.Type" /> with which the dynamic method is logically associated. The dynamic method has access to all members of the type.</param>
-      <exception cref="T:System.ArgumentException">An element of <paramref name="parameterTypes" /> is <see langword="null" /> or <see cref="T:System.Void" />.  
-  
- -or-  
-  
- <paramref name="owner" /> is an interface, an array, an open generic type, or a type parameter of a generic type or method.</exception>
+      <exception cref="T:System.ArgumentException">An element of <paramref name="parameterTypes" /> is <see langword="null" /> or <see cref="T:System.Void" />.
+-or-
+<paramref name="owner" /> is an interface, an array, an open generic type, or a type parameter of a generic type or method.</exception>
       <exception cref="T:System.ArgumentNullException">
-        <paramref name="name" /> is <see langword="null" />.  
-  
- -or-  
-  
- <paramref name="owner" /> is <see langword="null" />.</exception>
+        <paramref name="name" /> is <see langword="null" />.
+-or-
+<paramref name="owner" /> is <see langword="null" />.</exception>
       <exception cref="T:System.NotSupportedException">
         <paramref name="returnType" /> is <see langword="null" />, or is a type for which <see cref="P:System.Type.IsByRef" /> returns <see langword="true" />.</exception>
     </member>
       <param name="owner">A <see cref="T:System.Type" /> with which the dynamic method is logically associated. The dynamic method has access to all members of the type.</param>
       <param name="skipVisibility">
         <see langword="true" /> to skip JIT visibility checks on types and members accessed by the MSIL of the dynamic method; otherwise, <see langword="false" />.</param>
-      <exception cref="T:System.ArgumentException">An element of <paramref name="parameterTypes" /> is <see langword="null" /> or <see cref="T:System.Void" />.  
-  
- -or-  
-  
- <paramref name="owner" /> is an interface, an array, an open generic type, or a type parameter of a generic type or method.</exception>
+      <exception cref="T:System.ArgumentException">An element of <paramref name="parameterTypes" /> is <see langword="null" /> or <see cref="T:System.Void" />.
+-or-
+<paramref name="owner" /> is an interface, an array, an open generic type, or a type parameter of a generic type or method.</exception>
       <exception cref="T:System.ArgumentNullException">
-        <paramref name="name" /> is <see langword="null" />.  
-  
- -or-  
-  
- <paramref name="owner" /> is <see langword="null" />.</exception>
+        <paramref name="name" /> is <see langword="null" />.
+-or-
+<paramref name="owner" /> is <see langword="null" />.</exception>
       <exception cref="T:System.NotSupportedException">
         <paramref name="returnType" /> is <see langword="null" />, or is a type for which <see cref="P:System.Type.IsByRef" /> returns <see langword="true" />.</exception>
     </member>
+    <member name="P:System.Reflection.Emit.DynamicMethod.Attributes">
+      <summary>Gets the attributes specified when the dynamic method was created.</summary>
+      <returns>A bitwise combination of the <see cref="T:System.Reflection.MethodAttributes" /> values representing the attributes for the method.</returns>
+    </member>
+    <member name="P:System.Reflection.Emit.DynamicMethod.CallingConvention">
+      <summary>Gets the calling convention specified when the dynamic method was created.</summary>
+      <returns>One of the <see cref="T:System.Reflection.CallingConventions" /> values that indicates the calling convention of the method.</returns>
+    </member>
     <member name="M:System.Reflection.Emit.DynamicMethod.CreateDelegate(System.Type)">
       <summary>Completes the dynamic method and creates a delegate that can be used to execute it.</summary>
       <param name="delegateType">A delegate type whose signature matches that of the dynamic method.</param>
+      <returns>A delegate of the specified type, which can be used to execute the dynamic method.</returns>
       <exception cref="T:System.InvalidOperationException">The dynamic method has no method body.</exception>
       <exception cref="T:System.ArgumentException">
         <paramref name="delegateType" /> has the wrong number of parameters or the wrong parameter types.</exception>
-      <returns>A delegate of the specified type, which can be used to execute the dynamic method.</returns>
     </member>
     <member name="M:System.Reflection.Emit.DynamicMethod.CreateDelegate(System.Type,System.Object)">
       <summary>Completes the dynamic method and creates a delegate that can be used to execute it, specifying the delegate type and an object the delegate is bound to.</summary>
       <param name="delegateType">A delegate type whose signature matches that of the dynamic method, minus the first parameter.</param>
       <param name="target">An object the delegate is bound to. Must be of the same type as the first parameter of the dynamic method.</param>
+      <returns>A delegate of the specified type, which can be used to execute the dynamic method with the specified target object.</returns>
       <exception cref="T:System.InvalidOperationException">The dynamic method has no method body.</exception>
       <exception cref="T:System.ArgumentException">
-        <paramref name="target" /> is not the same type as the first parameter of the dynamic method, and is not assignable to that type.  
-  
- -or-  
-  
- <paramref name="delegateType" /> has the wrong number of parameters or the wrong parameter types.</exception>
-      <returns>A delegate of the specified type, which can be used to execute the dynamic method with the specified target object.</returns>
+        <paramref name="target" /> is not the same type as the first parameter of the dynamic method, and is not assignable to that type.
+-or-
+<paramref name="delegateType" /> has the wrong number of parameters or the wrong parameter types.</exception>
+    </member>
+    <member name="P:System.Reflection.Emit.DynamicMethod.DeclaringType">
+      <summary>Gets the type that declares the method, which is always <see langword="null" /> for dynamic methods.</summary>
+      <returns>Always <see langword="null" />.</returns>
     </member>
     <member name="M:System.Reflection.Emit.DynamicMethod.DefineParameter(System.Int32,System.Reflection.ParameterAttributes,System.String)">
       <summary>Defines a parameter of the dynamic method.</summary>
       <param name="position">The position of the parameter in the parameter list. Parameters are indexed beginning with the number 1 for the first parameter.</param>
       <param name="attributes">A bitwise combination of <see cref="T:System.Reflection.ParameterAttributes" /> values that specifies the attributes of the parameter.</param>
       <param name="parameterName">The name of the parameter. The name can be a zero-length string.</param>
-      <exception cref="T:System.ArgumentOutOfRangeException">The method has no parameters.  
-  
- -or-  
-  
- <paramref name="position" /> is less than 0.  
-  
- -or-  
-  
- <paramref name="position" /> is greater than the number of the method's parameters.</exception>
       <returns>Always returns <see langword="null" />.</returns>
+      <exception cref="T:System.ArgumentOutOfRangeException">The method has no parameters.
+-or-
+<paramref name="position" /> is less than 0.
+-or-
+<paramref name="position" /> is greater than the number of the method's parameters.</exception>
     </member>
     <member name="M:System.Reflection.Emit.DynamicMethod.GetBaseDefinition">
       <summary>Returns the base implementation for the method.</summary>
       <param name="attributeType">A <see cref="T:System.Type" /> representing the type of custom attribute to return.</param>
       <param name="inherit">
         <see langword="true" /> to search the method's inheritance chain to find the custom attributes; <see langword="false" /> to check only the current method.</param>
+      <returns>An array of objects representing the attributes of the method that are of type <paramref name="attributeType" /> or derive from type <paramref name="attributeType" />.</returns>
       <exception cref="T:System.ArgumentNullException">
         <paramref name="attributeType" /> is <see langword="null" />.</exception>
-      <returns>An array of objects representing the attributes of the method that are of type <paramref name="attributeType" /> or derive from type <paramref name="attributeType" />.</returns>
     </member>
     <member name="M:System.Reflection.Emit.DynamicMethod.GetDynamicILInfo">
       <summary>Returns a <see cref="T:System.Reflection.Emit.DynamicILInfo" /> object that can be used to generate a method body from metadata tokens, scopes, and Microsoft intermediate language (MSIL) streams.</summary>
       <summary>Returns the parameters of the dynamic method.</summary>
       <returns>An array of <see cref="T:System.Reflection.ParameterInfo" /> objects that represent the parameters of the dynamic method.</returns>
     </member>
+    <member name="P:System.Reflection.Emit.DynamicMethod.InitLocals">
+      <summary>Gets or sets a value indicating whether the local variables in the method are zero-initialized.</summary>
+      <returns>
+        <see langword="true" /> if the local variables in the method are zero-initialized; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
+    </member>
     <member name="M:System.Reflection.Emit.DynamicMethod.Invoke(System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)">
       <summary>Invokes the dynamic method using the specified parameters, under the constraints of the specified binder, with the specified culture information.</summary>
       <param name="obj">This parameter is ignored for dynamic methods, because they are static. Specify <see langword="null" />.</param>
       <param name="binder">A <see cref="T:System.Reflection.Binder" /> object that enables the binding, coercion of argument types, invocation of members, and retrieval of <see cref="T:System.Reflection.MemberInfo" /> objects through reflection. If <paramref name="binder" /> is <see langword="null" />, the default binder is used. For more details, see <see cref="T:System.Reflection.Binder" />.</param>
       <param name="parameters">An argument list. This is an array of arguments with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters this parameter should be <see langword="null" />.</param>
       <param name="culture">An instance of <see cref="T:System.Globalization.CultureInfo" /> used to govern the coercion of types. If this is <see langword="null" />, the <see cref="T:System.Globalization.CultureInfo" /> for the current thread is used. For example, this information is needed to correctly convert a <see cref="T:System.String" /> that represents 1000 to a <see cref="T:System.Double" /> value, because 1000 is represented differently by different cultures.</param>
+      <returns>A <see cref="T:System.Object" /> containing the return value of the invoked method.</returns>
       <exception cref="T:System.NotSupportedException">The <see cref="F:System.Reflection.CallingConventions.VarArgs" /> calling convention is not supported.</exception>
       <exception cref="T:System.Reflection.TargetParameterCountException">The number of elements in <paramref name="parameters" /> does not match the number of parameters in the dynamic method.</exception>
       <exception cref="T:System.ArgumentException">The type of one or more elements of <paramref name="parameters" /> does not match the type of the corresponding parameter of the dynamic method.</exception>
-      <exception cref="T:System.Reflection.TargetInvocationException">The dynamic method is associated with a module, is not anonymously hosted, and was constructed with <paramref name="skipVisibility" /> set to <see langword="false" />, but the dynamic method accesses members that are not <see langword="public" /> or <see langword="internal" /> (<see langword="Friend" /> in Visual Basic).  
-  
- -or-  
-  
- The dynamic method is anonymously hosted and was constructed with <paramref name="skipVisibility" /> set to <see langword="false" />, but it accesses members that are not <see langword="public" />.  
-  
- -or-  
-  
- The dynamic method contains unverifiable code. See the "Verification" section in Remarks for <see cref="T:System.Reflection.Emit.DynamicMethod" />.</exception>
-      <returns>A <see cref="T:System.Object" /> containing the return value of the invoked method.</returns>
+      <exception cref="T:System.Reflection.TargetInvocationException">The dynamic method is associated with a module, is not anonymously hosted, and was constructed with <paramref name="skipVisibility" /> set to <see langword="false" />, but the dynamic method accesses members that are not <see langword="public" /> or <see langword="internal" /> (<see langword="Friend" /> in Visual Basic).
+-or-
+The dynamic method is anonymously hosted and was constructed with <paramref name="skipVisibility" /> set to <see langword="false" />, but it accesses members that are not <see langword="public" />.
+-or-
+The dynamic method contains unverifiable code. See the "Verification" section in Remarks for <see cref="T:System.Reflection.Emit.DynamicMethod" />.</exception>
     </member>
     <member name="M:System.Reflection.Emit.DynamicMethod.IsDefined(System.Type,System.Boolean)">
       <summary>Indicates whether the specified custom attribute type is defined.</summary>
       <returns>
         <see langword="true" /> if the specified custom attribute type is defined; otherwise, <see langword="false" />.</returns>
     </member>
-    <member name="M:System.Reflection.Emit.DynamicMethod.ToString">
-      <summary>Returns the signature of the method, represented as a string.</summary>
-      <returns>A string representing the method signature.</returns>
-    </member>
-    <member name="P:System.Reflection.Emit.DynamicMethod.Attributes">
-      <summary>Gets the attributes specified when the dynamic method was created.</summary>
-      <returns>A bitwise combination of the <see cref="T:System.Reflection.MethodAttributes" /> values representing the attributes for the method.</returns>
-    </member>
-    <member name="P:System.Reflection.Emit.DynamicMethod.CallingConvention">
-      <summary>Gets the calling convention specified when the dynamic method was created.</summary>
-      <returns>One of the <see cref="T:System.Reflection.CallingConventions" /> values that indicates the calling convention of the method.</returns>
-    </member>
-    <member name="P:System.Reflection.Emit.DynamicMethod.DeclaringType">
-      <summary>Gets the type that declares the method, which is always <see langword="null" /> for dynamic methods.</summary>
-      <returns>Always <see langword="null" />.</returns>
-    </member>
-    <member name="P:System.Reflection.Emit.DynamicMethod.InitLocals">
-      <summary>Gets or sets a value indicating whether the local variables in the method are zero-initialized.</summary>
-      <returns>
-        <see langword="true" /> if the local variables in the method are zero-initialized; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
-    </member>
     <member name="P:System.Reflection.Emit.DynamicMethod.IsSecurityCritical">
       <summary>Gets a value that indicates whether the current dynamic method is security-critical or security-safe-critical, and therefore can perform critical operations.</summary>
-      <exception cref="T:System.InvalidOperationException">The dynamic method doesn't have a method body.</exception>
       <returns>
         <see langword="true" /> if the current dynamic method is security-critical or security-safe-critical; <see langword="false" /> if it is transparent.</returns>
+      <exception cref="T:System.InvalidOperationException">The dynamic method doesn't have a method body.</exception>
     </member>
     <member name="P:System.Reflection.Emit.DynamicMethod.IsSecuritySafeCritical">
       <summary>Gets a value that indicates whether the current dynamic method is security-safe-critical at the current trust level; that is, whether it can perform critical operations and can be accessed by transparent code.</summary>
-      <exception cref="T:System.InvalidOperationException">The dynamic method doesn't have a method body.</exception>
       <returns>
         <see langword="true" /> if the dynamic method is security-safe-critical at the current trust level; <see langword="false" /> if it is security-critical or transparent.</returns>
+      <exception cref="T:System.InvalidOperationException">The dynamic method doesn't have a method body.</exception>
     </member>
     <member name="P:System.Reflection.Emit.DynamicMethod.IsSecurityTransparent">
       <summary>Gets a value that indicates whether the current dynamic method is transparent at the current trust level, and therefore cannot perform critical operations.</summary>
-      <exception cref="T:System.InvalidOperationException">The dynamic method doesn't have a method body.</exception>
       <returns>
         <see langword="true" /> if the dynamic method is security-transparent at the current trust level; otherwise, <see langword="false" />.</returns>
+      <exception cref="T:System.InvalidOperationException">The dynamic method doesn't have a method body.</exception>
     </member>
     <member name="P:System.Reflection.Emit.DynamicMethod.MethodHandle">
       <summary>Not supported for dynamic methods.</summary>
-      <exception cref="T:System.InvalidOperationException">Not allowed for dynamic methods.</exception>
       <returns>Not supported for dynamic methods.</returns>
+      <exception cref="T:System.InvalidOperationException">Not allowed for dynamic methods.</exception>
     </member>
     <member name="P:System.Reflection.Emit.DynamicMethod.Module">
       <summary>Gets the module with which the dynamic method is logically associated.</summary>
       <summary>Gets the custom attributes of the return type for the dynamic method.</summary>
       <returns>An <see cref="T:System.Reflection.ICustomAttributeProvider" /> representing the custom attributes of the return type for the dynamic method.</returns>
     </member>
+    <member name="M:System.Reflection.Emit.DynamicMethod.ToString">
+      <summary>Returns the signature of the method, represented as a string.</summary>
+      <returns>A string representing the method signature.</returns>
+    </member>
   </members>
 </doc>
\ No newline at end of file