diff --git a/app/ClassWMResulthandler/DD_WMResulthandler.vbproj b/app/ClassWMResulthandler/DD_WMResulthandler.vbproj
index da6910b..3dd0faa 100644
--- a/app/ClassWMResulthandler/DD_WMResulthandler.vbproj
+++ b/app/ClassWMResulthandler/DD_WMResulthandler.vbproj
@@ -70,7 +70,7 @@
..\packages\Newtonsoft.Json.11.0.2\lib\net45\Newtonsoft.Json.dll
- ..\packages\NLog.4.7.13\lib\net45\NLog.dll
+ ..\packages\NLog.4.7.15\lib\net45\NLog.dll
P:\Visual Studio Projekte\Bibliotheken\Oracle.ManagedDataAccess.dll
diff --git a/app/ClassWMResulthandler/My Project/AssemblyInfo.vb b/app/ClassWMResulthandler/My Project/AssemblyInfo.vb
index ab394cb..8ab2bfa 100644
--- a/app/ClassWMResulthandler/My Project/AssemblyInfo.vb
+++ b/app/ClassWMResulthandler/My Project/AssemblyInfo.vb
@@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
' übernehmen, indem Sie "*" eingeben:
'
-
-
+
+
diff --git a/app/ClassWMResulthandler/clsDateiverarbeitung.vb b/app/ClassWMResulthandler/clsDateiverarbeitung.vb
index eea065f..83ea4b1 100644
--- a/app/ClassWMResulthandler/clsDateiverarbeitung.vb
+++ b/app/ClassWMResulthandler/clsDateiverarbeitung.vb
@@ -1,10 +1,10 @@
-Imports WINDREAMLib
-Imports System.IO
+Imports System.IO
Imports System.Net
-Imports Newtonsoft.Json
Imports System.Text
-Imports DigitalData.Modules.Logging
Imports System.Text.RegularExpressions
+Imports DigitalData.Modules.Logging
+Imports Newtonsoft.Json
+Imports WINDREAMLib
Public Class clsDateiverarbeitung
Dim Logger As Logger
@@ -15,7 +15,7 @@ Public Class clsDateiverarbeitung
Dim _database As clsDatabase
Public Shared pr_DTPROFIL_REGELN As DataTable
- Public Shared aktfile_Exportresult As String
+ Public Shared CURRFile_Exportresult As String
Public Shared CriticalError As Boolean = False
@@ -154,10 +154,11 @@ Public Class clsDateiverarbeitung
oFilename = oFilenameWM.Substring(0, oSplitIndex)
End If
-
+ oFilename = oFilename.Replace("/", "_")
Logger.Debug("Preparing export of WMFile {0}..", oFilenameWM)
Logger.Debug("Filename: {0}", oFilename)
Logger.Debug("Extension: {0}", clsCURRENT.FILE_Extension)
+ Logger.Debug("pExportPath: {0}", pExportPath)
' build the file path in case the exported file doesn't already exist
oFilenameExport = BuildExportPath(pExportPath, oFilename, clsCURRENT.FILE_Extension)
@@ -182,12 +183,13 @@ Public Class clsDateiverarbeitung
Logger.Debug("Cleaning up..")
oStream.Close()
-
+ oStream = Nothing
+ oWMFileIO = Nothing
Logger.Debug("File exported!")
If File.Exists(oFilenameExport) Then
- Logger.Info($"File Export to HDD [{oFilenameExport}]was successfull (File.Exists = True)!")
- aktfile_Exportresult = oFilenameExport
+ Logger.Info($"File Export to HDD [{oFilenameExport}] was successfull!")
+ CURRFile_Exportresult = oFilenameExport
clsCURRENT.EXPORTED_FILENAME = oFilenameExport
clsCURRENT.TEMP_FILES.Add(oFilenameExport)
Logger.Debug("FileInfo Added to variables...")
@@ -200,6 +202,7 @@ Public Class clsDateiverarbeitung
Return True
Catch ex As Exception
Logger.Error(ex)
+ Logger.Info($"Unexpected error in Export_WMFile2HDD [{ex.Message}]")
Return False
End Try
End Function
@@ -307,10 +310,10 @@ Public Class clsDateiverarbeitung
End If
Next
Dim version As Integer = 2
- Dim ZielPfad As String = Path.GetDirectoryName(aktfile_Exportresult)
+ Dim ZielPfad As String = Path.GetDirectoryName(CURRFile_Exportresult)
Logger.Debug("ZielPfad: " & ZielPfad)
Dim Filename = konvention
- Dim Extension = Path.GetExtension(aktfile_Exportresult)
+ Dim Extension = Path.GetExtension(CURRFile_Exportresult)
Logger.Debug("Extension: " & Extension)
Dim tempFilename As String = ZielPfad & "\" & Filename & Extension
Logger.Debug("tempFilename: " & tempFilename)
@@ -319,8 +322,20 @@ Public Class clsDateiverarbeitung
tempFilename = ZielPfad & "\" & Filename & "_" & version & Extension
version += 1
Loop
- Logger.Debug("RenameFile - OLDFilename: " & aktfile_Exportresult & " - NEWFilename: " & Path.GetFileName(tempFilename))
- My.Computer.FileSystem.RenameFile(aktfile_Exportresult, Path.GetFileName(tempFilename))
+ Logger.Debug("RenameFile - OLDFilename: " & CURRFile_Exportresult)
+ Logger.Debug("NEWFilename: " & Path.GetFileName(tempFilename))
+ Threading.Thread.Sleep(500)
+ Try
+ My.Computer.FileSystem.RenameFile(CURRFile_Exportresult, Path.GetFileName(tempFilename))
+ Catch ex As Exception
+ If ex.Message.Contains("The process cannot access the file") Then
+ tempFilename = tempFilename.Replace(".pdf", "_X.pdf")
+ My.Computer.FileSystem.CopyFile(CURRFile_Exportresult, tempFilename)
+ Logger.Info("File is in use - NewName " & tempFilename)
+ CURRFile_Exportresult = tempFilename
+ End If
+ End Try
+
Logger.Info("Datei wurde erfolgreich umbenannt.")
Return True
Catch ex As Exception
@@ -329,12 +344,14 @@ Public Class clsDateiverarbeitung
Return False
End Try
End Function
+
+
Public Function Rename_File_Vektor(WMFile As WMObject, WMINDEX_NAME As String)
Try
Dim WMIndexwert
- Dim ZielPfad As String = Path.GetDirectoryName(aktfile_Exportresult)
+ Dim ZielPfad As String = Path.GetDirectoryName(CURRFile_Exportresult)
Logger.Debug("ZielPfad: " & ZielPfad)
- Dim Extension = Path.GetExtension(aktfile_Exportresult)
+ Dim Extension = Path.GetExtension(CURRFile_Exportresult)
Logger.Debug("Extension: " & Extension)
If WMINDEX_NAME.StartsWith("[%") Then
@@ -354,8 +371,8 @@ Public Class clsDateiverarbeitung
Dim tempFilename As String = ZielPfad & "\" & WMvalue & Extension
Logger.Debug("tempFilename: " & tempFilename)
If anz = 1 Then
- Logger.Debug("RenameFile - OLDFilename: " & aktfile_Exportresult & " - NEWFilename: " & Path.GetFileName(tempFilename))
- My.Computer.FileSystem.RenameFile(aktfile_Exportresult, Path.GetFileName(tempFilename))
+ Logger.Debug("RenameFile - OLDFilename: " & CURRFile_Exportresult & " - NEWFilename: " & Path.GetFileName(tempFilename))
+ My.Computer.FileSystem.RenameFile(CURRFile_Exportresult, Path.GetFileName(tempFilename))
copybasefile = tempFilename
Else
Dim version As Integer = 2
diff --git a/app/ClassWMResulthandler/clsProfil.vb b/app/ClassWMResulthandler/clsProfil.vb
index 76ef176..1b3206f 100644
--- a/app/ClassWMResulthandler/clsProfil.vb
+++ b/app/ClassWMResulthandler/clsProfil.vb
@@ -166,7 +166,10 @@ Public Class clsProfil
Dim oGesamtFiles As Integer
oGesamtFiles = windreamSucheErgebnisse.Count
Dim oCountDocs As Integer = 0
+ Dim oEmailAttachment_path As String
For Each WMdok As WMObject In windreamSucheErgebnisse
+
+ oEmailAttachment_path = String.Empty
oCountDocs += 1
Logger.Debug($"Working on Doc {oCountDocs.ToString}/{windreamSucheErgebnisse.Count}")
oFileRunNo = "#Doc " & oCountDocs.ToString
@@ -195,13 +198,14 @@ Public Class clsProfil
Logger.Debug("Attached file shall be renamed...")
oRENAMEFILE = _dateiverarbeitung.REGEX_REPLACE(WMdok, oRENAMEFILE)
oAttachment_FullFilename = oRENAMEFILE & clsCURRENT.FILE_Extension
- Logger.Debug($"oAttachment: {oAttachment_FullFilename}")
+ Logger.Info($"oAttachment: {oAttachment_FullFilename}")
End If
End If
If Not IsNothing(clsCURRENT.DT_TBDD_EMAIL) And clsCURRENT.DT_TBDD_EMAIL.Rows.Count >= 1 Then
If _dateiverarbeitung.Export_WMFile2HDD(WMdok, Path.GetTempPath(), oAttachment_FullFilename) = True Then
oAttachment_FullFilename = clsCURRENT.EXPORTED_FILENAME
+ oEmailAttachment_path = oAttachment_FullFilename
Else
Logger.Warn($"Could not create a tempfile...")
FileJobSuccessful = False
@@ -249,7 +253,9 @@ Public Class clsProfil
oEmail_Betreff = _dateiverarbeitung.REGEX_REPLACE(WMdok, oEmail_Betreff)
Email_Body = _dateiverarbeitung.REGEX_REPLACE(WMdok, Email_Body)
oEmail_Betreff = $"{oEmail_Betreff} [eMail {oCountDocs} von {oGesamtFiles}]"
-
+ If oAttachment_FullFilename <> String.Empty Then
+ Logger.Warn($"Email Attachment {oAttachment_FullFilename}")
+ End If
If _email.Email_Send(oEmail_Betreff, Email_Body, Email_Empfänger, MAILFROM, MAILSMTP, MAIL_PORT, MAIL_USER, MAIL_USER_PW, MAIL_AUTH_TYPE, oAttachment_FullFilename) = True Then
FileJobSuccessful = True
@@ -275,6 +281,7 @@ Public Class clsProfil
CountExportedDoc += 1
FileJobSuccessful = True
Logger.Info($"{oFileRunNo} Export HDD completed!")
+ Logger.Debug($"{oFileRunNo} Export HDD completed!")
End If
'Next
Case "BNS json Download".ToUpper
@@ -432,6 +439,7 @@ Public Class clsProfil
Case "Rename File with windream Index".ToLower
Logger.Debug($"{oFileRunNo} Exportierte Datei soll nach Indexvorgaben umbenannt werden...")
_dateiverarbeitung.Rename_File(WMdok, DR_PR_FILE_JOB.Item("STRING1").ToString)
+
Case "Rename File with WMVector (only one)".ToLower
Logger.Debug($"{oFileRunNo} Exportierte Datei soll nach VektorIndexvorgaben umbenannt werden...")
_dateiverarbeitung.Rename_File_Vektor(WMdok, DR_PR_FILE_JOB.Item("STRING1").ToString)
diff --git a/app/ClassWMResulthandler/packages.config b/app/ClassWMResulthandler/packages.config
index c70e201..7d6ddef 100644
--- a/app/ClassWMResulthandler/packages.config
+++ b/app/ClassWMResulthandler/packages.config
@@ -1,5 +1,5 @@
-
+
\ No newline at end of file
diff --git a/app/ResultHandler_Konfig/ApplicationEvents.vb b/app/ResultHandler_Konfig/ApplicationEvents.vb
new file mode 100644
index 0000000..bc254e2
--- /dev/null
+++ b/app/ResultHandler_Konfig/ApplicationEvents.vb
@@ -0,0 +1,10 @@
+Namespace My
+ ' Für MyApplication sind folgende Ereignisse verfügbar:
+ ' Startup: Wird beim Starten der Anwendung noch vor dem Erstellen des Startformulars ausgelöst.
+ ' Shutdown: Wird nach dem Schließen aller Anwendungsformulare ausgelöst. Dieses Ereignis wird nicht ausgelöst, wenn die Anwendung mit einem Fehler beendet wird.
+ ' UnhandledException: Wird bei einem Ausnahmefehler ausgelöst.
+ ' StartupNextInstance: Wird beim Starten einer Einzelinstanzanwendung ausgelöst, wenn die Anwendung bereits aktiv ist.
+ ' NetworkAvailabilityChanged: Wird beim Herstellen oder Trennen der Netzwerkverbindung ausgelöst.
+ Partial Friend Class MyApplication
+ End Class
+End Namespace
diff --git a/app/ResultHandler_Konfig/My Project/AssemblyInfo.vb b/app/ResultHandler_Konfig/My Project/AssemblyInfo.vb
index 7e4f09e..1d54ed4 100644
--- a/app/ResultHandler_Konfig/My Project/AssemblyInfo.vb
+++ b/app/ResultHandler_Konfig/My Project/AssemblyInfo.vb
@@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
' übernehmen, indem Sie "*" eingeben:
'
-
+
diff --git a/app/ResultHandler_Konfig/ResultHandler_Konfig.vbproj b/app/ResultHandler_Konfig/ResultHandler_Konfig.vbproj
index 56ada53..ecee4e3 100644
--- a/app/ResultHandler_Konfig/ResultHandler_Konfig.vbproj
+++ b/app/ResultHandler_Konfig/ResultHandler_Konfig.vbproj
@@ -134,6 +134,7 @@
+
Form
diff --git a/app/packages/NLog.4.7.13/NLog.4.7.13.nupkg b/app/packages/NLog.4.7.13/NLog.4.7.13.nupkg
deleted file mode 100644
index e0c0890..0000000
Binary files a/app/packages/NLog.4.7.13/NLog.4.7.13.nupkg and /dev/null differ
diff --git a/app/packages/NLog.4.7.13/lib/monoandroid44/NLog.dll b/app/packages/NLog.4.7.13/lib/monoandroid44/NLog.dll
deleted file mode 100644
index 76f8520..0000000
Binary files a/app/packages/NLog.4.7.13/lib/monoandroid44/NLog.dll and /dev/null differ
diff --git a/app/packages/NLog.4.7.13/lib/net35/NLog.dll b/app/packages/NLog.4.7.13/lib/net35/NLog.dll
deleted file mode 100644
index 283e1fa..0000000
Binary files a/app/packages/NLog.4.7.13/lib/net35/NLog.dll and /dev/null differ
diff --git a/app/packages/NLog.4.7.13/lib/net40-client/NLog.dll b/app/packages/NLog.4.7.13/lib/net40-client/NLog.dll
deleted file mode 100644
index 64dd154..0000000
Binary files a/app/packages/NLog.4.7.13/lib/net40-client/NLog.dll and /dev/null differ
diff --git a/app/packages/NLog.4.7.13/lib/net45/NLog.dll b/app/packages/NLog.4.7.13/lib/net45/NLog.dll
deleted file mode 100644
index ac9498d..0000000
Binary files a/app/packages/NLog.4.7.13/lib/net45/NLog.dll and /dev/null differ
diff --git a/app/packages/NLog.4.7.13/lib/netstandard1.3/NLog.dll b/app/packages/NLog.4.7.13/lib/netstandard1.3/NLog.dll
deleted file mode 100644
index 4e675bb..0000000
Binary files a/app/packages/NLog.4.7.13/lib/netstandard1.3/NLog.dll and /dev/null differ
diff --git a/app/packages/NLog.4.7.13/lib/netstandard1.5/NLog.dll b/app/packages/NLog.4.7.13/lib/netstandard1.5/NLog.dll
deleted file mode 100644
index 316dc29..0000000
Binary files a/app/packages/NLog.4.7.13/lib/netstandard1.5/NLog.dll and /dev/null differ
diff --git a/app/packages/NLog.4.7.13/lib/netstandard2.0/NLog.dll b/app/packages/NLog.4.7.13/lib/netstandard2.0/NLog.dll
deleted file mode 100644
index 4aa35e7..0000000
Binary files a/app/packages/NLog.4.7.13/lib/netstandard2.0/NLog.dll and /dev/null differ
diff --git a/app/packages/NLog.4.7.13/lib/sl4/NLog.dll b/app/packages/NLog.4.7.13/lib/sl4/NLog.dll
deleted file mode 100644
index d412898..0000000
Binary files a/app/packages/NLog.4.7.13/lib/sl4/NLog.dll and /dev/null differ
diff --git a/app/packages/NLog.4.7.13/lib/sl5/NLog.dll b/app/packages/NLog.4.7.13/lib/sl5/NLog.dll
deleted file mode 100644
index f0bedf6..0000000
Binary files a/app/packages/NLog.4.7.13/lib/sl5/NLog.dll and /dev/null differ
diff --git a/app/packages/NLog.4.7.13/lib/wp8/NLog.dll b/app/packages/NLog.4.7.13/lib/wp8/NLog.dll
deleted file mode 100644
index 1263a46..0000000
Binary files a/app/packages/NLog.4.7.13/lib/wp8/NLog.dll and /dev/null differ
diff --git a/app/packages/NLog.4.7.13/lib/xamarinios10/NLog.dll b/app/packages/NLog.4.7.13/lib/xamarinios10/NLog.dll
deleted file mode 100644
index 373659d..0000000
Binary files a/app/packages/NLog.4.7.13/lib/xamarinios10/NLog.dll and /dev/null differ
diff --git a/app/packages/NLog.4.7.13/.signature.p7s b/app/packages/NLog.4.7.15/.signature.p7s
similarity index 86%
rename from app/packages/NLog.4.7.13/.signature.p7s
rename to app/packages/NLog.4.7.15/.signature.p7s
index 3fbe65e..7d61f30 100644
Binary files a/app/packages/NLog.4.7.13/.signature.p7s and b/app/packages/NLog.4.7.15/.signature.p7s differ
diff --git a/app/packages/NLog.4.7.15/NLog.4.7.15.nupkg b/app/packages/NLog.4.7.15/NLog.4.7.15.nupkg
new file mode 100644
index 0000000..64449c6
Binary files /dev/null and b/app/packages/NLog.4.7.15/NLog.4.7.15.nupkg differ
diff --git a/app/packages/NLog.4.7.15/lib/monoandroid44/NLog.dll b/app/packages/NLog.4.7.15/lib/monoandroid44/NLog.dll
new file mode 100644
index 0000000..b7ace35
Binary files /dev/null and b/app/packages/NLog.4.7.15/lib/monoandroid44/NLog.dll differ
diff --git a/app/packages/NLog.4.7.13/lib/xamarinios10/NLog.xml b/app/packages/NLog.4.7.15/lib/monoandroid44/NLog.xml
similarity index 99%
rename from app/packages/NLog.4.7.13/lib/xamarinios10/NLog.xml
rename to app/packages/NLog.4.7.15/lib/monoandroid44/NLog.xml
index 65edb5d..ac5352f 100644
--- a/app/packages/NLog.4.7.13/lib/xamarinios10/NLog.xml
+++ b/app/packages/NLog.4.7.15/lib/monoandroid44/NLog.xml
@@ -1810,6 +1810,11 @@
Gets the method info.
+
+
+ Gets the method parameters
+
+
Returns a string representation of the expression.
@@ -4009,6 +4014,11 @@
- Update TemplateXSD.xml for changes outside targets
+
+
+ Prefix for assets in Xamarin Android
+
+
Initializes a new instance of the class.
@@ -4921,12 +4931,24 @@
+
+
+ Gets or sets the option to include all properties from the log events
+
+
+
Gets or sets the option to include all properties from the log events
+
+
+ Gets or sets a value indicating whether to include contents of the dictionary.
+
+
+
Gets or sets a value indicating whether to include contents of the dictionary.
@@ -12050,6 +12072,12 @@
+
+
+ Gets or sets a value indicating whether to include contents of the dictionary.
+
+
+
Gets or sets a value indicating whether to include contents of the dictionary.
@@ -12068,6 +12096,12 @@
+
+
+ Gets or sets the option to include all properties from the log events
+
+
+
Gets or sets the option to include all properties from the log events
@@ -12415,6 +12449,27 @@
+
+
+ The identifier of the current process.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+
+
+
+
The information about the running process.
@@ -12641,6 +12696,34 @@
Working Set Size (64-bit).
+
+
+ The name of the current process.
+
+
+
+
+ Gets or sets a value indicating whether to write the full path to the process executable.
+
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Renders the current process name (optionally with a full path).
+
+ The to append the rendered data to.
+ Logging event.
+
The process time in format HH:mm:ss.mmm.
@@ -14170,12 +14253,24 @@
+
+
+ Gets or sets a value indicating whether to include contents of the dictionary.
+
+
+
Gets or sets the option to include all properties from the log event (as JSON)
+
+
+ Gets or sets the option to include all properties from the log event (as JSON)
+
+
+
Gets or sets the option to exclude null/empty properties from the log event (as JSON)
@@ -14527,6 +14622,12 @@
+
+
+ Gets or sets the option to include all properties from the log events
+
+
+
Gets or sets the option to include all properties from the log events
@@ -14539,6 +14640,12 @@
+
+
+ Gets or sets a value indicating whether to include contents of the dictionary.
+
+
+
Gets or sets a value indicating whether to include contents of the dictionary.
@@ -14850,12 +14957,24 @@
+
+
+ Gets or sets a value indicating whether to include contents of the dictionary.
+
+
+
Gets or sets the option to include all properties from the log event (as XML)
+
+
+ Gets or sets the option to include all properties from the log event (as XML)
+
+
+
List of property names to exclude when is true
@@ -24117,6 +24236,12 @@
+
+
+ Gets or sets a value indicating whether to include dictionary contents.
+
+
+
Gets or sets a value indicating whether to include dictionary contents.
@@ -24141,6 +24266,12 @@
+
+
+ Gets or sets the option to include all properties from the log events
+
+
+
Gets or sets the NDC item separator.
@@ -24611,6 +24742,10 @@
+
+
+
+
diff --git a/app/packages/NLog.4.7.15/lib/net35/NLog.dll b/app/packages/NLog.4.7.15/lib/net35/NLog.dll
new file mode 100644
index 0000000..9148b34
Binary files /dev/null and b/app/packages/NLog.4.7.15/lib/net35/NLog.dll differ
diff --git a/app/packages/NLog.4.7.13/lib/net35/NLog.xml b/app/packages/NLog.4.7.15/lib/net35/NLog.xml
similarity index 99%
rename from app/packages/NLog.4.7.13/lib/net35/NLog.xml
rename to app/packages/NLog.4.7.15/lib/net35/NLog.xml
index 94e59ea..c5f41c6 100644
--- a/app/packages/NLog.4.7.13/lib/net35/NLog.xml
+++ b/app/packages/NLog.4.7.15/lib/net35/NLog.xml
@@ -1827,6 +1827,11 @@
Gets the method info.
+
+
+ Gets the method parameters
+
+
Returns a string representation of the expression.
@@ -4994,12 +4999,24 @@
+
+
+ Gets or sets the option to include all properties from the log events
+
+
+
Gets or sets the option to include all properties from the log events
+
+
+ Gets or sets a value indicating whether to include contents of the dictionary.
+
+
+
Gets or sets a value indicating whether to include contents of the dictionary.
@@ -12407,6 +12424,12 @@
+
+
+ Gets or sets a value indicating whether to include contents of the dictionary.
+
+
+
Gets or sets a value indicating whether to include contents of the dictionary.
@@ -12425,6 +12448,12 @@
+
+
+ Gets or sets the option to include all properties from the log events
+
+
+
Gets or sets the option to include all properties from the log events
@@ -14767,12 +14796,24 @@
+
+
+ Gets or sets a value indicating whether to include contents of the dictionary.
+
+
+
Gets or sets the option to include all properties from the log event (as JSON)
+
+
+ Gets or sets the option to include all properties from the log event (as JSON)
+
+
+
Gets or sets the option to exclude null/empty properties from the log event (as JSON)
@@ -15124,6 +15165,12 @@
+
+
+ Gets or sets the option to include all properties from the log events
+
+
+
Gets or sets the option to include all properties from the log events
@@ -15136,6 +15183,12 @@
+
+
+ Gets or sets a value indicating whether to include contents of the dictionary.
+
+
+
Gets or sets a value indicating whether to include contents of the dictionary.
@@ -15447,12 +15500,24 @@
+
+
+ Gets or sets a value indicating whether to include contents of the dictionary.
+
+
+
Gets or sets the option to include all properties from the log event (as XML)
+
+
+ Gets or sets the option to include all properties from the log event (as XML)
+
+
+
List of property names to exclude when is true
@@ -26328,6 +26393,12 @@
+
+
+ Gets or sets a value indicating whether to include dictionary contents.
+
+
+
Gets or sets a value indicating whether to include dictionary contents.
@@ -26352,6 +26423,12 @@
+
+
+ Gets or sets the option to include all properties from the log events
+
+
+
Gets or sets the NDC item separator.
@@ -26941,6 +27018,10 @@
+
+
+
+
diff --git a/app/packages/NLog.4.7.15/lib/net40-client/NLog.dll b/app/packages/NLog.4.7.15/lib/net40-client/NLog.dll
new file mode 100644
index 0000000..4b9f8c2
Binary files /dev/null and b/app/packages/NLog.4.7.15/lib/net40-client/NLog.dll differ
diff --git a/app/packages/NLog.4.7.13/lib/net40-client/NLog.xml b/app/packages/NLog.4.7.15/lib/net40-client/NLog.xml
similarity index 99%
rename from app/packages/NLog.4.7.13/lib/net40-client/NLog.xml
rename to app/packages/NLog.4.7.15/lib/net40-client/NLog.xml
index 56c85f3..105620f 100644
--- a/app/packages/NLog.4.7.13/lib/net40-client/NLog.xml
+++ b/app/packages/NLog.4.7.15/lib/net40-client/NLog.xml
@@ -1827,6 +1827,11 @@
Gets the method info.
+
+
+ Gets the method parameters
+
+
Returns a string representation of the expression.
@@ -4994,12 +4999,24 @@
+
+
+ Gets or sets the option to include all properties from the log events
+
+
+
Gets or sets the option to include all properties from the log events
+
+
+ Gets or sets a value indicating whether to include contents of the dictionary.
+
+
+
Gets or sets a value indicating whether to include contents of the dictionary.
@@ -12417,6 +12434,12 @@
+
+
+ Gets or sets a value indicating whether to include contents of the dictionary.
+
+
+
Gets or sets a value indicating whether to include contents of the dictionary.
@@ -12435,6 +12458,12 @@
+
+
+ Gets or sets the option to include all properties from the log events
+
+
+
Gets or sets the option to include all properties from the log events
@@ -14784,12 +14813,24 @@
+
+
+ Gets or sets a value indicating whether to include contents of the dictionary.
+
+
+
Gets or sets the option to include all properties from the log event (as JSON)
+
+
+ Gets or sets the option to include all properties from the log event (as JSON)
+
+
+
Gets or sets the option to exclude null/empty properties from the log event (as JSON)
@@ -15141,6 +15182,12 @@
+
+
+ Gets or sets the option to include all properties from the log events
+
+
+
Gets or sets the option to include all properties from the log events
@@ -15153,6 +15200,12 @@
+
+
+ Gets or sets a value indicating whether to include contents of the dictionary.
+
+
+
Gets or sets a value indicating whether to include contents of the dictionary.
@@ -15464,12 +15517,24 @@
+
+
+ Gets or sets a value indicating whether to include contents of the dictionary.
+
+
+
Gets or sets the option to include all properties from the log event (as XML)
+
+
+ Gets or sets the option to include all properties from the log event (as XML)
+
+
+
List of property names to exclude when is true
@@ -26511,6 +26576,12 @@
+
+
+ Gets or sets a value indicating whether to include dictionary contents.
+
+
+
Gets or sets a value indicating whether to include dictionary contents.
@@ -26535,6 +26606,12 @@
+
+
+ Gets or sets the option to include all properties from the log events
+
+
+
Gets or sets the NDC item separator.
@@ -27124,6 +27201,10 @@
+
+
+
+
diff --git a/app/packages/NLog.4.7.15/lib/net45/NLog.dll b/app/packages/NLog.4.7.15/lib/net45/NLog.dll
new file mode 100644
index 0000000..daf6bed
Binary files /dev/null and b/app/packages/NLog.4.7.15/lib/net45/NLog.dll differ
diff --git a/app/packages/NLog.4.7.13/lib/net45/NLog.xml b/app/packages/NLog.4.7.15/lib/net45/NLog.xml
similarity index 99%
rename from app/packages/NLog.4.7.13/lib/net45/NLog.xml
rename to app/packages/NLog.4.7.15/lib/net45/NLog.xml
index a0b7feb..af8c64d 100644
--- a/app/packages/NLog.4.7.13/lib/net45/NLog.xml
+++ b/app/packages/NLog.4.7.15/lib/net45/NLog.xml
@@ -1827,6 +1827,11 @@
Gets the method info.
+
+
+ Gets the method parameters
+
+
Returns a string representation of the expression.
@@ -5058,12 +5063,24 @@
+
+
+ Gets or sets the option to include all properties from the log events
+
+
+
Gets or sets the option to include all properties from the log events
+
+
+ Gets or sets a value indicating whether to include contents of the dictionary.
+
+
+
Gets or sets a value indicating whether to include contents of the dictionary.
@@ -12544,6 +12561,12 @@
+
+
+ Gets or sets a value indicating whether to include contents of the dictionary.
+
+
+
Gets or sets a value indicating whether to include contents of the dictionary.
@@ -12562,6 +12585,12 @@
+
+
+ Gets or sets the option to include all properties from the log events
+
+
+
Gets or sets the option to include all properties from the log events
@@ -14911,12 +14940,24 @@
+
+
+ Gets or sets a value indicating whether to include contents of the dictionary.
+
+
+
Gets or sets the option to include all properties from the log event (as JSON)
+
+
+ Gets or sets the option to include all properties from the log event (as JSON)
+
+
+
Gets or sets the option to exclude null/empty properties from the log event (as JSON)
@@ -15268,6 +15309,12 @@
+
+
+ Gets or sets the option to include all properties from the log events
+
+
+
Gets or sets the option to include all properties from the log events
@@ -15280,6 +15327,12 @@
+
+
+ Gets or sets a value indicating whether to include contents of the dictionary.
+
+
+
Gets or sets a value indicating whether to include contents of the dictionary.
@@ -15591,12 +15644,24 @@
+
+
+ Gets or sets a value indicating whether to include contents of the dictionary.
+
+
+
Gets or sets the option to include all properties from the log event (as XML)
+
+
+ Gets or sets the option to include all properties from the log event (as XML)
+
+
+
List of property names to exclude when is true
@@ -26711,6 +26776,12 @@
+
+
+ Gets or sets a value indicating whether to include dictionary contents.
+
+
+
Gets or sets a value indicating whether to include dictionary contents.
@@ -26735,6 +26806,12 @@
+
+
+ Gets or sets the option to include all properties from the log events
+
+
+
Gets or sets the NDC item separator.
@@ -27324,6 +27401,10 @@
+
+
+
+
diff --git a/app/packages/NLog.4.7.15/lib/netstandard1.3/NLog.dll b/app/packages/NLog.4.7.15/lib/netstandard1.3/NLog.dll
new file mode 100644
index 0000000..9d1d861
Binary files /dev/null and b/app/packages/NLog.4.7.15/lib/netstandard1.3/NLog.dll differ
diff --git a/app/packages/NLog.4.7.13/lib/netstandard1.3/NLog.xml b/app/packages/NLog.4.7.15/lib/netstandard1.3/NLog.xml
similarity index 99%
rename from app/packages/NLog.4.7.13/lib/netstandard1.3/NLog.xml
rename to app/packages/NLog.4.7.15/lib/netstandard1.3/NLog.xml
index 5780bee..df346d8 100644
--- a/app/packages/NLog.4.7.13/lib/netstandard1.3/NLog.xml
+++ b/app/packages/NLog.4.7.15/lib/netstandard1.3/NLog.xml
@@ -1782,6 +1782,11 @@
Gets the method info.
+
+
+ Gets the method parameters
+
+
Returns a string representation of the expression.
@@ -4926,12 +4931,24 @@
+
+
+ Gets or sets the option to include all properties from the log events
+
+
+
Gets or sets the option to include all properties from the log events
+
+
+ Gets or sets a value indicating whether to include contents of the dictionary.
+
+
+
Gets or sets a value indicating whether to include contents of the dictionary.
@@ -11921,6 +11938,12 @@
+
+
+ Gets or sets a value indicating whether to include contents of the dictionary.
+
+
+
Gets or sets a value indicating whether to include contents of the dictionary.
@@ -11939,6 +11962,12 @@
+
+
+ Gets or sets the option to include all properties from the log events
+
+
+
Gets or sets the option to include all properties from the log events
@@ -13862,12 +13891,24 @@
+
+
+ Gets or sets a value indicating whether to include contents of the dictionary.
+
+
+
Gets or sets the option to include all properties from the log event (as JSON)
+
+
+ Gets or sets the option to include all properties from the log event (as JSON)
+
+
+
Gets or sets the option to exclude null/empty properties from the log event (as JSON)
@@ -14219,6 +14260,12 @@
+
+
+ Gets or sets the option to include all properties from the log events
+
+
+
Gets or sets the option to include all properties from the log events
@@ -14231,6 +14278,12 @@
+
+
+ Gets or sets a value indicating whether to include contents of the dictionary.
+
+
+
Gets or sets a value indicating whether to include contents of the dictionary.
@@ -14542,12 +14595,24 @@
+
+
+ Gets or sets a value indicating whether to include contents of the dictionary.
+
+
+
Gets or sets the option to include all properties from the log event (as XML)
+
+
+ Gets or sets the option to include all properties from the log event (as XML)
+
+
+
List of property names to exclude when is true
@@ -23290,6 +23355,12 @@
+
+
+ Gets or sets a value indicating whether to include dictionary contents.
+
+
+
Gets or sets a value indicating whether to include dictionary contents.
@@ -23314,6 +23385,12 @@
+
+
+ Gets or sets the option to include all properties from the log events
+
+
+
Gets or sets the NDC item separator.
@@ -23764,6 +23841,10 @@
+
+
+
+
diff --git a/app/packages/NLog.4.7.15/lib/netstandard1.5/NLog.dll b/app/packages/NLog.4.7.15/lib/netstandard1.5/NLog.dll
new file mode 100644
index 0000000..58d2224
Binary files /dev/null and b/app/packages/NLog.4.7.15/lib/netstandard1.5/NLog.dll differ
diff --git a/app/packages/NLog.4.7.13/lib/netstandard1.5/NLog.xml b/app/packages/NLog.4.7.15/lib/netstandard1.5/NLog.xml
similarity index 99%
rename from app/packages/NLog.4.7.13/lib/netstandard1.5/NLog.xml
rename to app/packages/NLog.4.7.15/lib/netstandard1.5/NLog.xml
index ef1bd68..2fb0a3e 100644
--- a/app/packages/NLog.4.7.13/lib/netstandard1.5/NLog.xml
+++ b/app/packages/NLog.4.7.15/lib/netstandard1.5/NLog.xml
@@ -1814,6 +1814,11 @@
Gets the method info.
+
+
+ Gets the method parameters
+
+
Returns a string representation of the expression.
@@ -5012,12 +5017,24 @@
+
+
+ Gets or sets the option to include all properties from the log events
+
+
+
Gets or sets the option to include all properties from the log events
+
+
+ Gets or sets a value indicating whether to include contents of the dictionary.
+
+
+
Gets or sets a value indicating whether to include contents of the dictionary.
@@ -12189,6 +12206,12 @@
+
+
+ Gets or sets a value indicating whether to include contents of the dictionary.
+
+
+
Gets or sets a value indicating whether to include contents of the dictionary.
@@ -12207,6 +12230,12 @@
+
+
+ Gets or sets the option to include all properties from the log events
+
+
+
Gets or sets the option to include all properties from the log events
@@ -14275,12 +14304,24 @@
+
+
+ Gets or sets a value indicating whether to include contents of the dictionary.
+
+
+
Gets or sets the option to include all properties from the log event (as JSON)
+
+
+ Gets or sets the option to include all properties from the log event (as JSON)
+
+
+
Gets or sets the option to exclude null/empty properties from the log event (as JSON)
@@ -14632,6 +14673,12 @@
+
+
+ Gets or sets the option to include all properties from the log events
+
+
+
Gets or sets the option to include all properties from the log events
@@ -14644,6 +14691,12 @@
+
+
+ Gets or sets a value indicating whether to include contents of the dictionary.
+
+
+
Gets or sets a value indicating whether to include contents of the dictionary.
@@ -14955,12 +15008,24 @@
+
+
+ Gets or sets a value indicating whether to include contents of the dictionary.
+
+
+
Gets or sets the option to include all properties from the log event (as XML)
+
+
+ Gets or sets the option to include all properties from the log event (as XML)
+
+
+
List of property names to exclude when is true
@@ -24221,6 +24286,12 @@
+
+
+ Gets or sets a value indicating whether to include dictionary contents.
+
+
+
Gets or sets a value indicating whether to include dictionary contents.
@@ -24245,6 +24316,12 @@
+
+
+ Gets or sets the option to include all properties from the log events
+
+
+
Gets or sets the NDC item separator.
@@ -24695,6 +24772,10 @@
+
+
+
+
diff --git a/app/packages/NLog.4.7.15/lib/netstandard2.0/NLog.dll b/app/packages/NLog.4.7.15/lib/netstandard2.0/NLog.dll
new file mode 100644
index 0000000..23bbb05
Binary files /dev/null and b/app/packages/NLog.4.7.15/lib/netstandard2.0/NLog.dll differ
diff --git a/app/packages/NLog.4.7.13/lib/netstandard2.0/NLog.xml b/app/packages/NLog.4.7.15/lib/netstandard2.0/NLog.xml
similarity index 99%
rename from app/packages/NLog.4.7.13/lib/netstandard2.0/NLog.xml
rename to app/packages/NLog.4.7.15/lib/netstandard2.0/NLog.xml
index e96c044..a60ffda 100644
--- a/app/packages/NLog.4.7.13/lib/netstandard2.0/NLog.xml
+++ b/app/packages/NLog.4.7.15/lib/netstandard2.0/NLog.xml
@@ -1827,6 +1827,11 @@
Gets the method info.
+
+
+ Gets the method parameters
+
+
Returns a string representation of the expression.
@@ -5038,12 +5043,24 @@
+
+
+ Gets or sets the option to include all properties from the log events
+
+
+
Gets or sets the option to include all properties from the log events
+
+
+ Gets or sets a value indicating whether to include contents of the dictionary.
+
+
+
Gets or sets a value indicating whether to include contents of the dictionary.
@@ -12403,6 +12420,12 @@
+
+
+ Gets or sets a value indicating whether to include contents of the dictionary.
+
+
+
Gets or sets a value indicating whether to include contents of the dictionary.
@@ -12421,6 +12444,12 @@
+
+
+ Gets or sets the option to include all properties from the log events
+
+
+
Gets or sets the option to include all properties from the log events
@@ -14553,12 +14582,24 @@
+
+
+ Gets or sets a value indicating whether to include contents of the dictionary.
+
+
+
Gets or sets the option to include all properties from the log event (as JSON)
+
+
+ Gets or sets the option to include all properties from the log event (as JSON)
+
+
+
Gets or sets the option to exclude null/empty properties from the log event (as JSON)
@@ -14910,6 +14951,12 @@
+
+
+ Gets or sets the option to include all properties from the log events
+
+
+
Gets or sets the option to include all properties from the log events
@@ -14922,6 +14969,12 @@
+
+
+ Gets or sets a value indicating whether to include contents of the dictionary.
+
+
+
Gets or sets a value indicating whether to include contents of the dictionary.
@@ -15233,12 +15286,24 @@
+
+
+ Gets or sets a value indicating whether to include contents of the dictionary.
+
+
+
Gets or sets the option to include all properties from the log event (as XML)
+
+
+ Gets or sets the option to include all properties from the log event (as XML)
+
+
+
List of property names to exclude when is true
@@ -25009,6 +25074,12 @@
+
+
+ Gets or sets a value indicating whether to include dictionary contents.
+
+
+
Gets or sets a value indicating whether to include dictionary contents.
@@ -25033,6 +25104,12 @@
+
+
+ Gets or sets the option to include all properties from the log events
+
+
+
Gets or sets the NDC item separator.
@@ -25503,6 +25580,10 @@
+
+
+
+
diff --git a/app/packages/NLog.4.7.15/lib/sl4/NLog.dll b/app/packages/NLog.4.7.15/lib/sl4/NLog.dll
new file mode 100644
index 0000000..3f49d75
Binary files /dev/null and b/app/packages/NLog.4.7.15/lib/sl4/NLog.dll differ
diff --git a/app/packages/NLog.4.7.13/lib/sl4/NLog.xml b/app/packages/NLog.4.7.15/lib/sl4/NLog.xml
similarity index 99%
rename from app/packages/NLog.4.7.13/lib/sl4/NLog.xml
rename to app/packages/NLog.4.7.15/lib/sl4/NLog.xml
index eac101d..e5e6e3b 100644
--- a/app/packages/NLog.4.7.13/lib/sl4/NLog.xml
+++ b/app/packages/NLog.4.7.15/lib/sl4/NLog.xml
@@ -1797,6 +1797,11 @@
Gets the method info.
+
+
+ Gets the method parameters
+
+
Returns a string representation of the expression.
@@ -4885,6 +4890,12 @@
+
+
+ Gets or sets the option to include all properties from the log events
+
+
+
Gets or sets the option to include all properties from the log events
@@ -10030,6 +10041,12 @@
+
+
+ Gets or sets the option to include all properties from the log events
+
+
+
Gets or sets the option to include all properties from the log events
@@ -11743,6 +11760,12 @@
+
+
+ Gets or sets the option to include all properties from the log event (as JSON)
+
+
+
Gets or sets the option to exclude null/empty properties from the log event (as JSON)
@@ -12094,6 +12117,12 @@
+
+
+ Gets or sets the option to include all properties from the log events
+
+
+
Gets or sets the option to include all properties from the log events
@@ -12405,6 +12434,12 @@
+
+
+ Gets or sets the option to include all properties from the log event (as XML)
+
+
+
List of property names to exclude when is true
@@ -19646,6 +19681,12 @@
+
+
+ Gets or sets the option to include all properties from the log events
+
+
+
Gets or sets the NDC item separator.
diff --git a/app/packages/NLog.4.7.15/lib/sl5/NLog.dll b/app/packages/NLog.4.7.15/lib/sl5/NLog.dll
new file mode 100644
index 0000000..8964191
Binary files /dev/null and b/app/packages/NLog.4.7.15/lib/sl5/NLog.dll differ
diff --git a/app/packages/NLog.4.7.13/lib/sl5/NLog.xml b/app/packages/NLog.4.7.15/lib/sl5/NLog.xml
similarity index 99%
rename from app/packages/NLog.4.7.13/lib/sl5/NLog.xml
rename to app/packages/NLog.4.7.15/lib/sl5/NLog.xml
index 1011c70..f38cc5f 100644
--- a/app/packages/NLog.4.7.13/lib/sl5/NLog.xml
+++ b/app/packages/NLog.4.7.15/lib/sl5/NLog.xml
@@ -1797,6 +1797,11 @@
Gets the method info.
+
+
+ Gets the method parameters
+
+
Returns a string representation of the expression.
@@ -4885,6 +4890,12 @@
+
+
+ Gets or sets the option to include all properties from the log events
+
+
+
Gets or sets the option to include all properties from the log events
@@ -10030,6 +10041,12 @@
+
+
+ Gets or sets the option to include all properties from the log events
+
+
+
Gets or sets the option to include all properties from the log events
@@ -11743,6 +11760,12 @@
+
+
+ Gets or sets the option to include all properties from the log event (as JSON)
+
+
+
Gets or sets the option to exclude null/empty properties from the log event (as JSON)
@@ -12094,6 +12117,12 @@
+
+
+ Gets or sets the option to include all properties from the log events
+
+
+
Gets or sets the option to include all properties from the log events
@@ -12405,6 +12434,12 @@
+
+
+ Gets or sets the option to include all properties from the log event (as XML)
+
+
+
List of property names to exclude when is true
@@ -19812,6 +19847,12 @@
+
+
+ Gets or sets the option to include all properties from the log events
+
+
+
Gets or sets the NDC item separator.
diff --git a/app/packages/NLog.4.7.15/lib/wp8/NLog.dll b/app/packages/NLog.4.7.15/lib/wp8/NLog.dll
new file mode 100644
index 0000000..3cc3a80
Binary files /dev/null and b/app/packages/NLog.4.7.15/lib/wp8/NLog.dll differ
diff --git a/app/packages/NLog.4.7.13/lib/wp8/NLog.xml b/app/packages/NLog.4.7.15/lib/wp8/NLog.xml
similarity index 99%
rename from app/packages/NLog.4.7.13/lib/wp8/NLog.xml
rename to app/packages/NLog.4.7.15/lib/wp8/NLog.xml
index 7fb819c..7a3e0a8 100644
--- a/app/packages/NLog.4.7.13/lib/wp8/NLog.xml
+++ b/app/packages/NLog.4.7.15/lib/wp8/NLog.xml
@@ -1797,6 +1797,11 @@
Gets the method info.
+
+
+ Gets the method parameters
+
+
Returns a string representation of the expression.
@@ -4885,6 +4890,12 @@
+
+
+ Gets or sets the option to include all properties from the log events
+
+
+
Gets or sets the option to include all properties from the log events
@@ -10023,6 +10034,12 @@
+
+
+ Gets or sets the option to include all properties from the log events
+
+
+
Gets or sets the option to include all properties from the log events
@@ -11713,6 +11730,12 @@
+
+
+ Gets or sets the option to include all properties from the log event (as JSON)
+
+
+
Gets or sets the option to exclude null/empty properties from the log event (as JSON)
@@ -12064,6 +12087,12 @@
+
+
+ Gets or sets the option to include all properties from the log events
+
+
+
Gets or sets the option to include all properties from the log events
@@ -12375,6 +12404,12 @@
+
+
+ Gets or sets the option to include all properties from the log event (as XML)
+
+
+
List of property names to exclude when is true
@@ -18988,6 +19023,12 @@
+
+
+ Gets or sets the option to include all properties from the log events
+
+
+
Gets or sets the NDC item separator.
diff --git a/app/packages/NLog.4.7.15/lib/xamarinios10/NLog.dll b/app/packages/NLog.4.7.15/lib/xamarinios10/NLog.dll
new file mode 100644
index 0000000..dbe1186
Binary files /dev/null and b/app/packages/NLog.4.7.15/lib/xamarinios10/NLog.dll differ
diff --git a/app/packages/NLog.4.7.13/lib/monoandroid44/NLog.xml b/app/packages/NLog.4.7.15/lib/xamarinios10/NLog.xml
similarity index 99%
rename from app/packages/NLog.4.7.13/lib/monoandroid44/NLog.xml
rename to app/packages/NLog.4.7.15/lib/xamarinios10/NLog.xml
index 3796e06..c42494b 100644
--- a/app/packages/NLog.4.7.13/lib/monoandroid44/NLog.xml
+++ b/app/packages/NLog.4.7.15/lib/xamarinios10/NLog.xml
@@ -1810,6 +1810,11 @@
Gets the method info.
+
+
+ Gets the method parameters
+
+
Returns a string representation of the expression.
@@ -4009,11 +4014,6 @@
- Update TemplateXSD.xml for changes outside targets
-
-
- Prefix for assets in Xamarin Android
-
-
Initializes a new instance of the class.
@@ -4926,12 +4926,24 @@
+
+
+ Gets or sets the option to include all properties from the log events
+
+
+
Gets or sets the option to include all properties from the log events
+
+
+ Gets or sets a value indicating whether to include contents of the dictionary.
+
+
+
Gets or sets a value indicating whether to include contents of the dictionary.
@@ -12055,6 +12067,12 @@
+
+
+ Gets or sets a value indicating whether to include contents of the dictionary.
+
+
+
Gets or sets a value indicating whether to include contents of the dictionary.
@@ -12073,6 +12091,12 @@
+
+
+ Gets or sets the option to include all properties from the log events
+
+
+
Gets or sets the option to include all properties from the log events
@@ -12420,27 +12444,6 @@
-
-
- The identifier of the current process.
-
-
-
-
- Initializes a new instance of the class.
-
-
-
-
- Initializes a new instance of the class.
-
-
-
-
-
-
-
-
The information about the running process.
@@ -12667,34 +12670,6 @@
Working Set Size (64-bit).
-
-
- The name of the current process.
-
-
-
-
- Gets or sets a value indicating whether to write the full path to the process executable.
-
-
-
-
-
- Initializes a new instance of the class.
-
-
-
-
- Initializes a new instance of the class.
-
-
-
-
- Renders the current process name (optionally with a full path).
-
- The to append the rendered data to.
- Logging event.
-
The process time in format HH:mm:ss.mmm.
@@ -14224,12 +14199,24 @@
+
+
+ Gets or sets a value indicating whether to include contents of the dictionary.
+
+
+
Gets or sets the option to include all properties from the log event (as JSON)
+
+
+ Gets or sets the option to include all properties from the log event (as JSON)
+
+
+
Gets or sets the option to exclude null/empty properties from the log event (as JSON)
@@ -14581,6 +14568,12 @@
+
+
+ Gets or sets the option to include all properties from the log events
+
+
+
Gets or sets the option to include all properties from the log events
@@ -14593,6 +14586,12 @@
+
+
+ Gets or sets a value indicating whether to include contents of the dictionary.
+
+
+
Gets or sets a value indicating whether to include contents of the dictionary.
@@ -14904,12 +14903,24 @@
+
+
+ Gets or sets a value indicating whether to include contents of the dictionary.
+
+
+
Gets or sets the option to include all properties from the log event (as XML)
+
+
+ Gets or sets the option to include all properties from the log event (as XML)
+
+
+
List of property names to exclude when is true
@@ -24171,6 +24182,12 @@
+
+
+ Gets or sets a value indicating whether to include dictionary contents.
+
+
+
Gets or sets a value indicating whether to include dictionary contents.
@@ -24195,6 +24212,12 @@
+
+
+ Gets or sets the option to include all properties from the log events
+
+
+
Gets or sets the NDC item separator.
@@ -24665,6 +24688,10 @@
+
+
+
+