Write a message in your logger.
Namespace:
LeCouteauSuisse.APIAssembly: LeCouteauSuisseAPI (in LeCouteauSuisseAPI.dll) Version: 1.0.0.2 (1.0.0.2)
Syntax
C# |
---|
protected abstract void WriteInternal( LoggerLevel level, string Message, int MessageId, int Category, byte[] data, Exception ex ) |
Visual Basic (Declaration) |
---|
Protected MustOverride Sub WriteInternal ( _ level As LoggerLevel, _ Message As String, _ MessageId As Integer, _ Category As Integer, _ data As Byte(), _ ex As Exception _ ) |
Visual C++ |
---|
protected: virtual void WriteInternal( LoggerLevel level, String^ Message, int MessageId, int Category, array<unsigned char>^ data, Exception^ ex ) abstract |
Parameters
- level
- Type: LeCouteauSuisse.API..::.LoggerLevel
The level of your message
- Message
- Type: System..::.String
The message
- MessageId
- Type: System..::.Int32
An identifier for your message
- Category
- Type: System..::.Int32
A category for your message
- data
- Type: array<
System..::.Byte
>[]()[]
Array of binary data associated with your message
- ex
- Type: System..::.Exception
An Exception you want to write
Remarks
You must override this method called by all Write() methods.