Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
CustomDebugInformation.cs
Go to the documentation of this file.
1
namespace
System.Reflection.Metadata
;
2
3
public
readonly
struct
CustomDebugInformation
4
{
5
private
readonly
MetadataReader
_reader
;
6
7
private
readonly
int
_rowId
;
8
9
private
CustomDebugInformationHandle
Handle
=>
CustomDebugInformationHandle
.
FromRowId
(
_rowId
);
10
11
public
EntityHandle
Parent
=>
_reader
.
CustomDebugInformationTable
.GetParent(
Handle
);
12
13
public
GuidHandle
Kind
=>
_reader
.
CustomDebugInformationTable
.GetKind(
Handle
);
14
15
public
BlobHandle
Value
=>
_reader
.
CustomDebugInformationTable
.GetValue(
Handle
);
16
17
internal
CustomDebugInformation
(
MetadataReader
reader,
CustomDebugInformationHandle
handle
)
18
{
19
_reader
= reader;
20
_rowId
=
handle
.RowId;
21
}
22
}
System.Reflection.Metadata.MetadataReader.CustomDebugInformationTable
CustomDebugInformationTableReader CustomDebugInformationTable
Definition
MetadataReader.cs:179
System.Reflection.Metadata.MetadataReader
Definition
MetadataReader.cs:12
System.Reflection.Metadata
Definition
AssemblyExtensions.cs:4
System.ExceptionArgument.handle
@ handle
System.Reflection.Metadata.BlobHandle
Definition
BlobHandle.cs:6
System.Reflection.Metadata.CustomDebugInformationHandle.FromRowId
static CustomDebugInformationHandle FromRowId(int rowId)
Definition
CustomDebugInformationHandle.cs:18
System.Reflection.Metadata.CustomDebugInformationHandle
Definition
CustomDebugInformationHandle.cs:6
System.Reflection.Metadata.CustomDebugInformation._rowId
readonly int _rowId
Definition
CustomDebugInformation.cs:7
System.Reflection.Metadata.CustomDebugInformation.Kind
GuidHandle Kind
Definition
CustomDebugInformation.cs:13
System.Reflection.Metadata.CustomDebugInformation.CustomDebugInformation
CustomDebugInformation(MetadataReader reader, CustomDebugInformationHandle handle)
Definition
CustomDebugInformation.cs:17
System.Reflection.Metadata.CustomDebugInformation._reader
readonly MetadataReader _reader
Definition
CustomDebugInformation.cs:5
System.Reflection.Metadata.CustomDebugInformation.Parent
EntityHandle Parent
Definition
CustomDebugInformation.cs:11
System.Reflection.Metadata.CustomDebugInformation.Value
BlobHandle Value
Definition
CustomDebugInformation.cs:15
System.Reflection.Metadata.CustomDebugInformation
Definition
CustomDebugInformation.cs:4
System.Reflection.Metadata.EntityHandle
Definition
EntityHandle.cs:6
System.Reflection.Metadata.GuidHandle
Definition
GuidHandle.cs:6
System.Reflection.Metadata.Handle
Definition
Handle.cs:6
source
System.Reflection.Metadata
System.Reflection.Metadata
CustomDebugInformation.cs
Generated by
1.10.0