Click or drag to resize

LoggingCallback Delegate

The delegate used to report logging information

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

Parameters

aMessageSource
Type: SystemString
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
Type: Articy.ApiEntryType
the entry type of the message
aText
Type: SystemString
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