Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
MethodBody.cs
Go to the documentation of this file.
1
using
System.Collections.Generic
;
2
3
namespace
System.Reflection
;
4
5
public
class
MethodBody
6
{
7
public
virtual
int
LocalSignatureMetadataToken
=> 0;
8
9
public
virtual
IList<LocalVariableInfo>
LocalVariables
10
{
11
get
12
{
13
throw
new
ArgumentNullException
(
"array"
);
14
}
15
}
16
17
public
virtual
int
MaxStackSize
=> 0;
18
19
public
virtual
bool
InitLocals
=>
false
;
20
21
public
virtual
IList<ExceptionHandlingClause>
ExceptionHandlingClauses
22
{
23
get
24
{
25
throw
new
ArgumentNullException
(
"array"
);
26
}
27
}
28
29
protected
MethodBody
()
30
{
31
}
32
33
public
virtual
byte
[]?
GetILAsByteArray
()
34
{
35
return
null
;
36
}
37
}
System.ArgumentNullException
Definition
ArgumentNullException.cs:10
System.Collections.Generic.Dictionary
Definition
Dictionary.cs:14
System.Reflection.MethodBody.MethodBody
MethodBody()
Definition
MethodBody.cs:29
System.Reflection.MethodBody.InitLocals
virtual bool InitLocals
Definition
MethodBody.cs:19
System.Reflection.MethodBody.MaxStackSize
virtual int MaxStackSize
Definition
MethodBody.cs:17
System.Reflection.MethodBody.LocalVariables
virtual IList< LocalVariableInfo > LocalVariables
Definition
MethodBody.cs:10
System.Reflection.MethodBody.ExceptionHandlingClauses
virtual IList< ExceptionHandlingClause > ExceptionHandlingClauses
Definition
MethodBody.cs:22
System.Reflection.MethodBody.LocalSignatureMetadataToken
virtual int LocalSignatureMetadataToken
Definition
MethodBody.cs:7
System.Reflection.MethodBody.GetILAsByteArray
virtual ? byte[] GetILAsByteArray()
Definition
MethodBody.cs:33
System.Reflection.MethodBody
Definition
MethodBody.cs:6
System.Collections.Generic
Definition
IHashKeyCollection.cs:1
System.Reflection
Definition
ICustomTypeProvider.cs:1
source
System.Private.CoreLib
System.Reflection
MethodBody.cs
Generated by
1.10.0