Message body to log.
You can use predefined values in your message. The list of predefined values is:
[C#]
StringDictionary dictionary = new StringDictionary();
dictionary.Add("myparam", "text of my param");
VGLogEntry entry = new VGLogEntry("User Id:[userid]", "Application:[tab][applicationid][newline]My parameter:[tab][p:myparam][newline]Computer:[tab][machine]", TraceEventType.Information, dictionary);
VGLogger.Write(entry);
[Visual Basic]
Dim dictionary as StringDictionary = new StringDictionary()
dictionary.Add("myparam", "text of my param")
Dim entry as VGLogEntry
entry = new VGLogEntry("User Id:[userid]", "Application:[tab][applicationid][newline]My parameter:[tab][p:myparam][newline]Computer:[tab][machine]", TraceEventType.Information, dictionary)
VGLogger.Write(entry)
VGLogEntry Class | Novalys.VisualGuard.Security.Logging Namespace