Click or drag to resize

ICallbackHandlerReportError Method

Called when an error occurs in the library.

Namespace:  Internal.SharpBgfx
Assembly:  NeoAxis.Core (in NeoAxis.Core.dll) Version: 2024.1.1.0 (2024.1.1.0)
Syntax
C#
void ReportError(
	string fileName,
	int line,
	ErrorType errorType,
	string message
)

Parameters

fileName
Type: SystemString
The name of the source file in which the message originated.
line
Type: SystemInt32
The line number in which the message originated.
errorType
Type: Internal.SharpBgfxErrorType
The type of error that occurred.
message
Type: SystemString
Message string detailing what went wrong.
Remarks
If the error type is not DebugCheck, bgfx is in an unrecoverable state and the application should terminate. This method can be called from any thread.
See Also