Click or drag to resize

ClientLogShouldSuppressClientMessageDelegate Delegate

Delegate that can be used to override the default behavior of a message and suppress it from being sent and displayed in the Axiom client.

Namespace: AxiomCore2.Log
Assembly: Canary.Axiom.Session (in Canary.Axiom.Session.exe) Version: 26.3.0.26126+77919fe8dcde1308422799b2086ea8bb512a61ce
Syntax
C#
public delegate bool ShouldSuppressClientMessageDelegate(
	MessageLogLevel level,
	string? message,
	Exception? exception
)

Parameters

level  MessageLogLevel
Messaage level (Info/Warn/Error/etc.)
message  String
Message which may be null
exception  Exception
Exception which may be null

Return Value

Boolean
True if a message should not be sent to the client. False if the message should be sent to the client.
See Also