[Tizen] Add BuildTools 2.1.0-rc1-02804-05
[platform/upstream/coreclr.git] / Tools / dotnetcli / sdk / NuGetFallbackFolder / system.reflection.emit.lightweight / 4.0.1 / ref / netstandard1.0 / System.Reflection.Emit.Lightweight.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <doc>
3   <assembly>
4     <name>System.Reflection.Emit.Lightweight</name>
5   </assembly>
6   <members>
7     <member name="T:System.Reflection.Emit.DynamicMethod">
8       <summary>Defines and represents a dynamic method that can be compiled, executed, and discarded. Discarded methods are available for garbage collection.</summary>
9     </member>
10     <member name="M:System.Reflection.Emit.DynamicMethod.#ctor(System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Reflection.Module,System.Boolean)">
11       <summary>Creates a dynamic method that is global to a module, specifying the method name, attributes, calling convention, return type, parameter types, module, 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>
12       <param name="name">The name of the dynamic method. This can be a zero-length string, but it cannot be null.</param>
13       <param name="attributes">A bitwise combination of <see cref="T:System.Reflection.MethodAttributes" /> values that specifies the attributes of the dynamic method. The only combination allowed is <see cref="F:System.Reflection.MethodAttributes.Public" /> and <see cref="F:System.Reflection.MethodAttributes.Static" />.</param>
14       <param name="callingConvention">The calling convention for the dynamic method. Must be <see cref="F:System.Reflection.CallingConventions.Standard" />.</param>
15       <param name="returnType">A <see cref="T:System.Type" /> object that specifies the return type of the dynamic method, or null if the method has no return type. </param>
16       <param name="parameterTypes">An array of <see cref="T:System.Type" /> objects specifying the types of the parameters of the dynamic method, or null if the method has no parameters. </param>
17       <param name="m">A <see cref="T:System.Reflection.Module" /> representing the module with which the dynamic method is to be logically associated. </param>
18       <param name="skipVisibility">true to skip JIT visibility checks on types and members accessed by the MSIL of the dynamic method; otherwise, false. </param>
19       <exception cref="T:System.ArgumentException">An element of <paramref name="parameterTypes" /> is null or <see cref="T:System.Void" />.-or-<paramref name="m" /> is a module that provides anonymous hosting for dynamic methods.</exception>
20       <exception cref="T:System.ArgumentNullException">
21         <paramref name="name" /> is null. -or-<paramref name="m" /> is null.</exception>
22       <exception cref="T:System.NotSupportedException">
23         <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 true. </exception>
24     </member>
25     <member name="M:System.Reflection.Emit.DynamicMethod.#ctor(System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type,System.Boolean)">
26       <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>
27       <param name="name">The name of the dynamic method. This can be a zero-length string, but it cannot be null.</param>
28       <param name="attributes">A bitwise combination of <see cref="T:System.Reflection.MethodAttributes" /> values that specifies the attributes of the dynamic method. The only combination allowed is <see cref="F:System.Reflection.MethodAttributes.Public" /> and <see cref="F:System.Reflection.MethodAttributes.Static" />.</param>
29       <param name="callingConvention">The calling convention for the dynamic method. Must be <see cref="F:System.Reflection.CallingConventions.Standard" />.</param>
30       <param name="returnType">A <see cref="T:System.Type" /> object that specifies the return type of the dynamic method, or null if the method has no return type. </param>
31       <param name="parameterTypes">An array of <see cref="T:System.Type" /> objects specifying the types of the parameters of the dynamic method, or null if the method has no parameters. </param>
32       <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>
33       <param name="skipVisibility">true to skip JIT visibility checks on types and members accessed by the MSIL of the dynamic method; otherwise, false.</param>
34       <exception cref="T:System.ArgumentException">An element of <paramref name="parameterTypes" /> is 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>
35       <exception cref="T:System.ArgumentNullException">
36         <paramref name="name" /> is null. -or-<paramref name="owner" /> is null.</exception>
37       <exception cref="T:System.NotSupportedException">
38         <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 true. </exception>
39     </member>
40     <member name="M:System.Reflection.Emit.DynamicMethod.#ctor(System.String,System.Type,System.Type[])">
41       <summary>Initializes an anonymously hosted dynamic method, specifying the method name, return type, and parameter types. </summary>
42       <param name="name">The name of the dynamic method. This can be a zero-length string, but it cannot be null. </param>
43       <param name="returnType">A <see cref="T:System.Type" /> object that specifies the return type of the dynamic method, or null if the method has no return type. </param>
44       <param name="parameterTypes">An array of <see cref="T:System.Type" /> objects specifying the types of the parameters of the dynamic method, or null if the method has no parameters. </param>
45       <exception cref="T:System.ArgumentException">An element of <paramref name="parameterTypes" /> is null or <see cref="T:System.Void" />. </exception>
46       <exception cref="T:System.ArgumentNullException">
47         <paramref name="name" /> is null. </exception>
48       <exception cref="T:System.NotSupportedException">
49         <paramref name="returnType" /> is a type for which <see cref="P:System.Type.IsByRef" /> returns true. </exception>
50     </member>
51     <member name="M:System.Reflection.Emit.DynamicMethod.#ctor(System.String,System.Type,System.Type[],System.Boolean)">
52       <summary>Initializes an anonymously hosted dynamic method, specifying the method name, return type, parameter types, 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>
53       <param name="name">The name of the dynamic method. This can be a zero-length string, but it cannot be null. </param>
54       <param name="returnType">A <see cref="T:System.Type" /> object that specifies the return type of the dynamic method, or null if the method has no return type. </param>
55       <param name="parameterTypes">An array of <see cref="T:System.Type" /> objects specifying the types of the parameters of the dynamic method, or null if the method has no parameters. </param>
56       <param name="restrictedSkipVisibility">true to skip JIT visibility checks on types and members accessed by the MSIL of the dynamic method, with this restriction: the trust level of the assemblies that contain those types and members must be equal to or less than the trust level of the call stack that emits the dynamic method; otherwise, false. </param>
57       <exception cref="T:System.ArgumentException">An element of <paramref name="parameterTypes" /> is null or <see cref="T:System.Void" />.</exception>
58       <exception cref="T:System.ArgumentNullException">
59         <paramref name="name" /> is null. </exception>
60       <exception cref="T:System.NotSupportedException">
61         <paramref name="returnType" /> is a type for which <see cref="P:System.Type.IsByRef" /> returns true. </exception>
62     </member>
63     <member name="M:System.Reflection.Emit.DynamicMethod.#ctor(System.String,System.Type,System.Type[],System.Reflection.Module)">
64       <summary>Creates a dynamic method that is global to a module, specifying the method name, return type, parameter types, and module.</summary>
65       <param name="name">The name of the dynamic method. This can be a zero-length string, but it cannot be null. </param>
66       <param name="returnType">A <see cref="T:System.Type" /> object that specifies the return type of the dynamic method, or null if the method has no return type. </param>
67       <param name="parameterTypes">An array of <see cref="T:System.Type" /> objects specifying the types of the parameters of the dynamic method, or null if the method has no parameters. </param>
68       <param name="m">A <see cref="T:System.Reflection.Module" /> representing the module with which the dynamic method is to be logically associated. </param>
69       <exception cref="T:System.ArgumentException">An element of <paramref name="parameterTypes" /> is null or <see cref="T:System.Void" />. -or-<paramref name="m" /> is a module that provides anonymous hosting for dynamic methods.</exception>
70       <exception cref="T:System.ArgumentNullException">
71         <paramref name="name" /> is null. -or-<paramref name="m" /> is null.</exception>
72       <exception cref="T:System.NotSupportedException">
73         <paramref name="returnType" /> is a type for which <see cref="P:System.Type.IsByRef" /> returns true. </exception>
74     </member>
75     <member name="M:System.Reflection.Emit.DynamicMethod.#ctor(System.String,System.Type,System.Type[],System.Reflection.Module,System.Boolean)">
76       <summary>Creates a dynamic method that is global to a module, specifying the method name, return type, parameter types, module, 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>
77       <param name="name">The name of the dynamic method. This can be a zero-length string, but it cannot be null. </param>
78       <param name="returnType">A <see cref="T:System.Type" /> object that specifies the return type of the dynamic method, or null if the method has no return type. </param>
79       <param name="parameterTypes">An array of <see cref="T:System.Type" /> objects specifying the types of the parameters of the dynamic method, or null if the method has no parameters. </param>
80       <param name="m">A <see cref="T:System.Reflection.Module" /> representing the module with which the dynamic method is to be logically associated. </param>
81       <param name="skipVisibility">true to skip JIT visibility checks on types and members accessed by the MSIL of the dynamic method. </param>
82       <exception cref="T:System.ArgumentException">An element of <paramref name="parameterTypes" /> is null or <see cref="T:System.Void" />. -or-<paramref name="m" /> is a module that provides anonymous hosting for dynamic methods.</exception>
83       <exception cref="T:System.ArgumentNullException">
84         <paramref name="name" /> is null. -or-<paramref name="m" /> is null.</exception>
85       <exception cref="T:System.NotSupportedException">
86         <paramref name="returnType" /> is a type for which <see cref="P:System.Type.IsByRef" /> returns true. </exception>
87     </member>
88     <member name="M:System.Reflection.Emit.DynamicMethod.#ctor(System.String,System.Type,System.Type[],System.Type)">
89       <summary>Creates a dynamic method, specifying the method name, return type, parameter types, and the type with which the dynamic method is logically associated.</summary>
90       <param name="name">The name of the dynamic method. This can be a zero-length string, but it cannot be null. </param>
91       <param name="returnType">A <see cref="T:System.Type" /> object that specifies the return type of the dynamic method, or null if the method has no return type. </param>
92       <param name="parameterTypes">An array of <see cref="T:System.Type" /> objects specifying the types of the parameters of the dynamic method, or null if the method has no parameters. </param>
93       <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>
94       <exception cref="T:System.ArgumentException">An element of <paramref name="parameterTypes" /> is 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>
95       <exception cref="T:System.ArgumentNullException">
96         <paramref name="name" /> is null. -or-<paramref name="owner" /> is null.</exception>
97       <exception cref="T:System.NotSupportedException">
98         <paramref name="returnType" /> is null, or is a type for which <see cref="P:System.Type.IsByRef" /> returns true. </exception>
99     </member>
100     <member name="M:System.Reflection.Emit.DynamicMethod.#ctor(System.String,System.Type,System.Type[],System.Type,System.Boolean)">
101       <summary>Creates a dynamic method, specifying the method name, 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>
102       <param name="name">The name of the dynamic method. This can be a zero-length string, but it cannot be null. </param>
103       <param name="returnType">A <see cref="T:System.Type" /> object that specifies the return type of the dynamic method, or null if the method has no return type. </param>
104       <param name="parameterTypes">An array of <see cref="T:System.Type" /> objects specifying the types of the parameters of the dynamic method, or null if the method has no parameters. </param>
105       <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>
106       <param name="skipVisibility">true to skip JIT visibility checks on types and members accessed by the MSIL of the dynamic method; otherwise, false. </param>
107       <exception cref="T:System.ArgumentException">An element of <paramref name="parameterTypes" /> is 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>
108       <exception cref="T:System.ArgumentNullException">
109         <paramref name="name" /> is null. -or-<paramref name="owner" /> is null.</exception>
110       <exception cref="T:System.NotSupportedException">
111         <paramref name="returnType" /> is null, or is a type for which <see cref="P:System.Type.IsByRef" /> returns true. </exception>
112     </member>
113     <member name="P:System.Reflection.Emit.DynamicMethod.Attributes">
114       <summary>Gets the attributes specified when the dynamic method was created.</summary>
115       <returns>A bitwise combination of the <see cref="T:System.Reflection.MethodAttributes" /> values representing the attributes for the method.</returns>
116     </member>
117     <member name="P:System.Reflection.Emit.DynamicMethod.CallingConvention">
118       <summary>Gets the calling convention specified when the dynamic method was created.</summary>
119       <returns>One of the <see cref="T:System.Reflection.CallingConventions" /> values that indicates the calling convention of the method.</returns>
120     </member>
121     <member name="M:System.Reflection.Emit.DynamicMethod.CreateDelegate(System.Type)">
122       <summary>Completes the dynamic method and creates a delegate that can be used to execute it.</summary>
123       <returns>A delegate of the specified type, which can be used to execute the dynamic method.</returns>
124       <param name="delegateType">A delegate type whose signature matches that of the dynamic method. </param>
125       <exception cref="T:System.InvalidOperationException">The dynamic method has no method body.</exception>
126       <exception cref="T:System.ArgumentException">
127         <paramref name="delegateType" /> has the wrong number of parameters or the wrong parameter types.</exception>
128     </member>
129     <member name="M:System.Reflection.Emit.DynamicMethod.CreateDelegate(System.Type,System.Object)">
130       <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>
131       <returns>A delegate of the specified type, which can be used to execute the dynamic method with the specified target object.</returns>
132       <param name="delegateType">A delegate type whose signature matches that of the dynamic method, minus the first parameter.</param>
133       <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>
134       <exception cref="T:System.InvalidOperationException">The dynamic method has no method body.</exception>
135       <exception cref="T:System.ArgumentException">
136         <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>
137     </member>
138     <member name="P:System.Reflection.Emit.DynamicMethod.DeclaringType">
139       <summary>Gets the type that declares the method, which is always null for dynamic methods.</summary>
140       <returns>Always null.</returns>
141     </member>
142     <member name="M:System.Reflection.Emit.DynamicMethod.GetILGenerator">
143       <summary>Returns a Microsoft intermediate language (MSIL) generator for the method with a default MSIL stream size of 64 bytes.</summary>
144       <returns>An <see cref="T:System.Reflection.Emit.ILGenerator" /> object for the method.</returns>
145     </member>
146     <member name="M:System.Reflection.Emit.DynamicMethod.GetILGenerator(System.Int32)">
147       <summary>Returns a Microsoft intermediate language (MSIL) generator for the method with the specified MSIL stream size.</summary>
148       <returns>An <see cref="T:System.Reflection.Emit.ILGenerator" /> object for the method, with the specified MSIL stream size.</returns>
149       <param name="streamSize">The size of the MSIL stream, in bytes. </param>
150     </member>
151     <member name="M:System.Reflection.Emit.DynamicMethod.GetParameters">
152       <summary>Returns the parameters of the dynamic method.</summary>
153       <returns>An array of <see cref="T:System.Reflection.ParameterInfo" /> objects that represent the parameters of the dynamic method.</returns>
154     </member>
155     <member name="P:System.Reflection.Emit.DynamicMethod.InitLocals">
156       <summary>Gets or sets a value indicating whether the local variables in the method are zero-initialized. </summary>
157       <returns>true if the local variables in the method are zero-initialized; otherwise, false. The default is true.</returns>
158     </member>
159     <member name="P:System.Reflection.Emit.DynamicMethod.MethodImplementationFlags"></member>
160     <member name="P:System.Reflection.Emit.DynamicMethod.Name">
161       <summary>Gets the name of the dynamic method.</summary>
162       <returns>The simple name of the method.</returns>
163     </member>
164     <member name="P:System.Reflection.Emit.DynamicMethod.ReturnParameter">
165       <summary>Gets the return parameter of the dynamic method.</summary>
166       <returns>Always null. </returns>
167     </member>
168     <member name="P:System.Reflection.Emit.DynamicMethod.ReturnType">
169       <summary>Gets the type of return value for the dynamic method.</summary>
170       <returns>A <see cref="T:System.Type" /> representing the type of the return value of the current method; <see cref="T:System.Void" /> if the method has no return type.</returns>
171     </member>
172     <member name="M:System.Reflection.Emit.DynamicMethod.ToString">
173       <summary>Returns the signature of the method, represented as a string.</summary>
174       <returns>A string representing the method signature.</returns>
175     </member>
176   </members>
177 </doc>