Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
MethodImport.cs
Go to the documentation of this file.
1
namespace
System.Reflection.Metadata
;
2
3
public
readonly
struct
MethodImport
4
{
5
private
readonly
MethodImportAttributes
_attributes
;
6
7
private
readonly
StringHandle
_name
;
8
9
private
readonly
ModuleReferenceHandle
_module
;
10
11
public
MethodImportAttributes
Attributes
=>
_attributes
;
12
13
public
StringHandle
Name
=>
_name
;
14
15
public
ModuleReferenceHandle
Module
=>
_module
;
16
17
internal
MethodImport
(
MethodImportAttributes
attributes,
StringHandle
name,
ModuleReferenceHandle
module)
18
{
19
_attributes
= attributes;
20
_name
= name;
21
_module
= module;
22
}
23
}
System.Reflection.Module
Definition
Module.cs:9
System.Reflection.Metadata
Definition
AssemblyExtensions.cs:4
System.Reflection.MethodImportAttributes
MethodImportAttributes
Definition
MethodImportAttributes.cs:5
System.Reflection.Metadata.MethodImport.Name
StringHandle Name
Definition
MethodImport.cs:13
System.Reflection.Metadata.MethodImport._attributes
readonly MethodImportAttributes _attributes
Definition
MethodImport.cs:5
System.Reflection.Metadata.MethodImport._module
readonly ModuleReferenceHandle _module
Definition
MethodImport.cs:9
System.Reflection.Metadata.MethodImport._name
readonly StringHandle _name
Definition
MethodImport.cs:7
System.Reflection.Metadata.MethodImport.Attributes
MethodImportAttributes Attributes
Definition
MethodImport.cs:11
System.Reflection.Metadata.MethodImport.MethodImport
MethodImport(MethodImportAttributes attributes, StringHandle name, ModuleReferenceHandle module)
Definition
MethodImport.cs:17
System.Reflection.Metadata.MethodImport
Definition
MethodImport.cs:4
System.Reflection.Metadata.ModuleReferenceHandle
Definition
ModuleReferenceHandle.cs:4
System.Reflection.Metadata.StringHandle
Definition
StringHandle.cs:6
source
System.Reflection.Metadata
System.Reflection.Metadata
MethodImport.cs
Generated by
1.10.0