|
// <auto-generated/>
#nullable enable
using Microsoft.Diagnostics.DataContractReader;
using Microsoft.Diagnostics.DataContractReader.Contracts;
using Microsoft.Diagnostics.DataContractReader.Generated;
namespace Microsoft.Diagnostics.DataContractReader.Data;
/// <summary>Wraps the <c>InFlightTLSData</c> type.</summary>
partial class InflightTLSData
{
private static readonly string[] _typeNames = new[] { "InFlightTLSData" };
public TargetPointer Address { get; }
partial void OnInit(Target target, TargetPointer address);
public InflightTLSData(Target target, TargetPointer address)
{
Address = address;
LayoutSet layouts = LayoutSet.Resolve(target, _typeNames);
{
layouts.Select(address, out var t, out var b, out var n, "Next");
Next = target.ReadPointerField(b, t, n);
}
{
layouts.Select(address, out var t, out var b, out var n, "TlsIndex");
TlsIndex = target.ReadDataField<Data.TLSIndex>(b, t, n);
}
{
layouts.Select(address, out var t, out var b, out var n, "TLSData");
TLSData = target.ReadDataField<Data.ObjectHandle>(b, t, n);
}
OnInit(target, address);
}
static InflightTLSData IData<InflightTLSData>.Create(Target target, TargetPointer address)
=> new InflightTLSData(target, address);
}
|