Table of Contents

Class LogRecord

Namespace
Maplibre.NativeFfi.Log
Assembly
Maplibre.NativeFfi.dll

Copied MapLibre Native log record delivered to a log callback.

public sealed record LogRecord : IEquatable<LogRecord>
Inheritance
LogRecord
Implements
Inherited Members

Constructors

LogRecord(LogSeverity, uint, LogEvent, uint, long, string)

Copied MapLibre Native log record delivered to a log callback.

public LogRecord(LogSeverity Severity, uint RawSeverity, LogEvent Event, uint RawEvent, long Code, string Message)

Parameters

Severity LogSeverity
RawSeverity uint
Event LogEvent
RawEvent uint
Code long
Message string

Properties

Code

public long Code { get; init; }

Property Value

long

Event

public LogEvent Event { get; init; }

Property Value

LogEvent

Message

public string Message { get; init; }

Property Value

string

RawEvent

public uint RawEvent { get; init; }

Property Value

uint

RawSeverity

public uint RawSeverity { get; init; }

Property Value

uint

Severity

public LogSeverity Severity { get; init; }

Property Value

LogSeverity