LoggingCallback Delegate

The delegate used to report logging information

Definition

Namespace: Articy.Api
Assembly: PublicApiTypes (in PublicApiTypes.dll) Version: 1.0.0
C#
public delegate void LoggingCallback(
	string aMessageSource,
	EntryType aType,
	string aText
)

Parameters

aMessageSource  String
the source of the message. Can either be one of the predefined sources 'System' or 'API' or a user given source name as found as LogSourceName in the parameter args objects required by some methods
aType  EntryType
the entry type of the message
aText  String
the actual message text

Remarks

This is the delegate of an method your program should provide to the articy:draft API to receive log messages.

See Also