Struct MbglOfflineError
- Namespace
- MapLibreNative.Maui
Error payload for RegionError.
public readonly record struct MbglOfflineError : IEquatable<MbglOfflineError>
- Implements
- Inherited Members
Constructors
MbglOfflineError(long, int, string)
Error payload for RegionError.
public MbglOfflineError(long RegionId, int Reason, string Message)
Parameters
RegionIdlongReasonintmbgl Response::Error::Reason value (2=NotFound 3=Server 4=Connection 5=RateLimit 6=Other), or 100 = Mapbox tile count limit exceeded.
Messagestring
Properties
Message
public string Message { get; init; }
Property Value
Reason
mbgl Response::Error::Reason value (2=NotFound 3=Server 4=Connection 5=RateLimit 6=Other), or 100 = Mapbox tile count limit exceeded.
public int Reason { get; init; }
Property Value
RegionId
public long RegionId { get; init; }