Release 2.6
This commit is contained in:
@@ -70,7 +70,7 @@
|
||||
<HintPath>..\packages\Newtonsoft.Json.11.0.2\lib\net45\Newtonsoft.Json.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="NLog, Version=4.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\NLog.4.7.13\lib\net45\NLog.dll</HintPath>
|
||||
<HintPath>..\packages\NLog.4.7.15\lib\net45\NLog.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Oracle.ManagedDataAccess">
|
||||
<HintPath>P:\Visual Studio Projekte\Bibliotheken\Oracle.ManagedDataAccess.dll</HintPath>
|
||||
|
||||
@@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
|
||||
' übernehmen, indem Sie "*" eingeben:
|
||||
' <Assembly: AssemblyVersion("1.0.*")>
|
||||
|
||||
<Assembly: AssemblyVersion("2.5.0.0")>
|
||||
<Assembly: AssemblyFileVersion("1.5.0.0")>
|
||||
<Assembly: AssemblyVersion("2.6.0.0")>
|
||||
<Assembly: AssemblyFileVersion("1.6.0.0")>
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<packages>
|
||||
<package id="Newtonsoft.Json" version="11.0.2" targetFramework="net461" />
|
||||
<package id="NLog" version="4.7.13" targetFramework="net461" />
|
||||
<package id="NLog" version="4.7.15" targetFramework="net461" />
|
||||
</packages>
|
||||
10
app/ResultHandler_Konfig/ApplicationEvents.vb
Normal file
10
app/ResultHandler_Konfig/ApplicationEvents.vb
Normal file
@@ -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
|
||||
@@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
|
||||
' übernehmen, indem Sie "*" eingeben:
|
||||
' <Assembly: AssemblyVersion("1.0.*")>
|
||||
|
||||
<Assembly: AssemblyVersion("1.2.0.0")>
|
||||
<Assembly: AssemblyVersion("1.3.0.0")>
|
||||
<Assembly: AssemblyFileVersion("1.0.0.1")>
|
||||
|
||||
@@ -134,6 +134,7 @@
|
||||
<Import Include="System.Threading.Tasks" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="ApplicationEvents.vb" />
|
||||
<Compile Include="frmMain.vb">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
|
||||
BIN
app/packages/NLog.4.7.13/NLog.4.7.13.nupkg
vendored
BIN
app/packages/NLog.4.7.13/NLog.4.7.13.nupkg
vendored
Binary file not shown.
BIN
app/packages/NLog.4.7.13/lib/monoandroid44/NLog.dll
vendored
BIN
app/packages/NLog.4.7.13/lib/monoandroid44/NLog.dll
vendored
Binary file not shown.
BIN
app/packages/NLog.4.7.13/lib/net35/NLog.dll
vendored
BIN
app/packages/NLog.4.7.13/lib/net35/NLog.dll
vendored
Binary file not shown.
BIN
app/packages/NLog.4.7.13/lib/net40-client/NLog.dll
vendored
BIN
app/packages/NLog.4.7.13/lib/net40-client/NLog.dll
vendored
Binary file not shown.
BIN
app/packages/NLog.4.7.13/lib/net45/NLog.dll
vendored
BIN
app/packages/NLog.4.7.13/lib/net45/NLog.dll
vendored
Binary file not shown.
BIN
app/packages/NLog.4.7.13/lib/netstandard1.3/NLog.dll
vendored
BIN
app/packages/NLog.4.7.13/lib/netstandard1.3/NLog.dll
vendored
Binary file not shown.
BIN
app/packages/NLog.4.7.13/lib/netstandard1.5/NLog.dll
vendored
BIN
app/packages/NLog.4.7.13/lib/netstandard1.5/NLog.dll
vendored
Binary file not shown.
BIN
app/packages/NLog.4.7.13/lib/netstandard2.0/NLog.dll
vendored
BIN
app/packages/NLog.4.7.13/lib/netstandard2.0/NLog.dll
vendored
Binary file not shown.
BIN
app/packages/NLog.4.7.13/lib/sl4/NLog.dll
vendored
BIN
app/packages/NLog.4.7.13/lib/sl4/NLog.dll
vendored
Binary file not shown.
BIN
app/packages/NLog.4.7.13/lib/sl5/NLog.dll
vendored
BIN
app/packages/NLog.4.7.13/lib/sl5/NLog.dll
vendored
Binary file not shown.
BIN
app/packages/NLog.4.7.13/lib/wp8/NLog.dll
vendored
BIN
app/packages/NLog.4.7.13/lib/wp8/NLog.dll
vendored
Binary file not shown.
BIN
app/packages/NLog.4.7.13/lib/xamarinios10/NLog.dll
vendored
BIN
app/packages/NLog.4.7.13/lib/xamarinios10/NLog.dll
vendored
Binary file not shown.
Binary file not shown.
BIN
app/packages/NLog.4.7.15/NLog.4.7.15.nupkg
vendored
Normal file
BIN
app/packages/NLog.4.7.15/NLog.4.7.15.nupkg
vendored
Normal file
Binary file not shown.
BIN
app/packages/NLog.4.7.15/lib/monoandroid44/NLog.dll
vendored
Normal file
BIN
app/packages/NLog.4.7.15/lib/monoandroid44/NLog.dll
vendored
Normal file
Binary file not shown.
@@ -1810,6 +1810,11 @@
|
||||
Gets the method info.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:NLog.Conditions.ConditionMethodExpression.MethodParameters">
|
||||
<summary>
|
||||
Gets the method parameters
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:NLog.Conditions.ConditionMethodExpression.ToString">
|
||||
<summary>
|
||||
Returns a string representation of the expression.
|
||||
@@ -4009,6 +4014,11 @@
|
||||
- Update TemplateXSD.xml for changes outside targets
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="F:NLog.Config.XmlLoggingConfiguration.AssetsPrefix">
|
||||
<summary>
|
||||
Prefix for assets in Xamarin Android
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:NLog.Config.XmlLoggingConfiguration.#ctor(System.String)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:NLog.Config.XmlLoggingConfiguration" /> class.
|
||||
@@ -4921,12 +4931,24 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.IIncludeContext.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.IIncludeContext.IncludeAllProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.IIncludeContext.IncludeScopeProperties">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.IIncludeContext.IncludeMdlc">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
@@ -12050,6 +12072,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.LayoutRenderers.Log4JXmlEventLayoutRenderer.IncludeScopeProperties">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.LayoutRenderers.Log4JXmlEventLayoutRenderer.IncludeMdlc">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
@@ -12068,6 +12096,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.LayoutRenderers.Log4JXmlEventLayoutRenderer.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='JSON Output' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.LayoutRenderers.Log4JXmlEventLayoutRenderer.IncludeAllProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
@@ -12415,6 +12449,27 @@
|
||||
<member name="M:NLog.LayoutRenderers.ProcessDirLayoutRenderer.Append(System.Text.StringBuilder,NLog.LogEventInfo)">
|
||||
<inheritdoc/>
|
||||
</member>
|
||||
<member name="T:NLog.LayoutRenderers.ProcessIdLayoutRenderer">
|
||||
<summary>
|
||||
The identifier of the current process.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:NLog.LayoutRenderers.ProcessIdLayoutRenderer.#ctor">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:NLog.LayoutRenderers.ProcessIdLayoutRenderer" /> class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:NLog.LayoutRenderers.ProcessIdLayoutRenderer.#ctor(NLog.Internal.Fakeables.IAppEnvironment)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:NLog.LayoutRenderers.ProcessIdLayoutRenderer" /> class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:NLog.LayoutRenderers.ProcessIdLayoutRenderer.Append(System.Text.StringBuilder,NLog.LogEventInfo)">
|
||||
<inheritdoc />
|
||||
</member>
|
||||
<member name="M:NLog.LayoutRenderers.ProcessIdLayoutRenderer.NLog#Internal#IRawValue#TryGetRawValue(NLog.LogEventInfo,System.Object@)">
|
||||
<inheritdoc />
|
||||
</member>
|
||||
<member name="T:NLog.LayoutRenderers.ProcessInfoLayoutRenderer">
|
||||
<summary>
|
||||
The information about the running process.
|
||||
@@ -12641,6 +12696,34 @@
|
||||
Working Set Size (64-bit).
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:NLog.LayoutRenderers.ProcessNameLayoutRenderer">
|
||||
<summary>
|
||||
The name of the current process.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:NLog.LayoutRenderers.ProcessNameLayoutRenderer.FullName">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to write the full path to the process executable.
|
||||
</summary>
|
||||
<docgen category='Rendering Options' order='10' />
|
||||
</member>
|
||||
<member name="M:NLog.LayoutRenderers.ProcessNameLayoutRenderer.#ctor">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:NLog.LayoutRenderers.ProcessNameLayoutRenderer" /> class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:NLog.LayoutRenderers.ProcessNameLayoutRenderer.#ctor(NLog.Internal.Fakeables.IAppEnvironment)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:NLog.LayoutRenderers.ProcessNameLayoutRenderer" /> class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:NLog.LayoutRenderers.ProcessNameLayoutRenderer.Append(System.Text.StringBuilder,NLog.LogEventInfo)">
|
||||
<summary>
|
||||
Renders the current process name (optionally with a full path).
|
||||
</summary>
|
||||
<param name="builder">The <see cref="T:System.Text.StringBuilder"/> to append the rendered data to.</param>
|
||||
<param name="logEvent">Logging event.</param>
|
||||
</member>
|
||||
<member name="T:NLog.LayoutRenderers.ProcessTimeLayoutRenderer">
|
||||
<summary>
|
||||
The process time in format HH:mm:ss.mmm.
|
||||
@@ -14170,12 +14253,24 @@
|
||||
</summary>
|
||||
<docgen category='JSON Output' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.JsonLayout.IncludeScopeProperties">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
</summary>
|
||||
<docgen category='JSON Output' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.JsonLayout.IncludeAllProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log event (as JSON)
|
||||
</summary>
|
||||
<docgen category='JSON Output' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.JsonLayout.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log event (as JSON)
|
||||
</summary>
|
||||
<docgen category='JSON Output' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.JsonLayout.ExcludeEmptyProperties">
|
||||
<summary>
|
||||
Gets or sets the option to exclude null/empty properties from the log event (as JSON)
|
||||
@@ -14527,6 +14622,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.Log4JXmlEventLayout.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.Log4JXmlEventLayout.IncludeAllProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
@@ -14539,6 +14640,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.Log4JXmlEventLayout.IncludeScopeProperties">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.Log4JXmlEventLayout.IncludeMdlc">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
@@ -14850,12 +14957,24 @@
|
||||
</summary>
|
||||
<docgen category='LogEvent Properties XML Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.XmlElementBase.IncludeScopeProperties">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
</summary>
|
||||
<docgen category='LogEvent Properties XML Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.XmlElementBase.IncludeAllProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log event (as XML)
|
||||
</summary>
|
||||
<docgen category='LogEvent Properties XML Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.XmlElementBase.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log event (as XML)
|
||||
</summary>
|
||||
<docgen category='LogEvent Properties XML Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.XmlElementBase.ExcludeProperties">
|
||||
<summary>
|
||||
List of property names to exclude when <see cref="P:NLog.Layouts.XmlElementBase.IncludeAllProperties"/> is true
|
||||
@@ -24117,6 +24236,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.NLogViewerTarget.IncludeScopeProperties">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary contents.
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.NLogViewerTarget.IncludeMdlc">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary contents.
|
||||
@@ -24141,6 +24266,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.NLogViewerTarget.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.NLogViewerTarget.NdcItemSeparator">
|
||||
<summary>
|
||||
Gets or sets the NDC item separator.
|
||||
@@ -24611,6 +24742,10 @@
|
||||
<inheritdoc/>
|
||||
<docgen category='Layout Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.TargetWithContext.IncludeScopeProperties">
|
||||
<inheritdoc/>
|
||||
<docgen category='Layout Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.TargetWithContext.IncludeMdlc">
|
||||
<inheritdoc/>
|
||||
<docgen category='Layout Options' order='10' />
|
||||
BIN
app/packages/NLog.4.7.15/lib/net35/NLog.dll
vendored
Normal file
BIN
app/packages/NLog.4.7.15/lib/net35/NLog.dll
vendored
Normal file
Binary file not shown.
@@ -1827,6 +1827,11 @@
|
||||
Gets the method info.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:NLog.Conditions.ConditionMethodExpression.MethodParameters">
|
||||
<summary>
|
||||
Gets the method parameters
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:NLog.Conditions.ConditionMethodExpression.ToString">
|
||||
<summary>
|
||||
Returns a string representation of the expression.
|
||||
@@ -4994,12 +4999,24 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.IIncludeContext.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.IIncludeContext.IncludeAllProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.IIncludeContext.IncludeScopeProperties">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.IIncludeContext.IncludeMdlc">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
@@ -12407,6 +12424,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.LayoutRenderers.Log4JXmlEventLayoutRenderer.IncludeScopeProperties">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.LayoutRenderers.Log4JXmlEventLayoutRenderer.IncludeMdlc">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
@@ -12425,6 +12448,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.LayoutRenderers.Log4JXmlEventLayoutRenderer.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='JSON Output' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.LayoutRenderers.Log4JXmlEventLayoutRenderer.IncludeAllProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
@@ -14767,12 +14796,24 @@
|
||||
</summary>
|
||||
<docgen category='JSON Output' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.JsonLayout.IncludeScopeProperties">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
</summary>
|
||||
<docgen category='JSON Output' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.JsonLayout.IncludeAllProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log event (as JSON)
|
||||
</summary>
|
||||
<docgen category='JSON Output' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.JsonLayout.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log event (as JSON)
|
||||
</summary>
|
||||
<docgen category='JSON Output' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.JsonLayout.ExcludeEmptyProperties">
|
||||
<summary>
|
||||
Gets or sets the option to exclude null/empty properties from the log event (as JSON)
|
||||
@@ -15124,6 +15165,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.Log4JXmlEventLayout.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.Log4JXmlEventLayout.IncludeAllProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
@@ -15136,6 +15183,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.Log4JXmlEventLayout.IncludeScopeProperties">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.Log4JXmlEventLayout.IncludeMdlc">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
@@ -15447,12 +15500,24 @@
|
||||
</summary>
|
||||
<docgen category='LogEvent Properties XML Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.XmlElementBase.IncludeScopeProperties">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
</summary>
|
||||
<docgen category='LogEvent Properties XML Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.XmlElementBase.IncludeAllProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log event (as XML)
|
||||
</summary>
|
||||
<docgen category='LogEvent Properties XML Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.XmlElementBase.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log event (as XML)
|
||||
</summary>
|
||||
<docgen category='LogEvent Properties XML Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.XmlElementBase.ExcludeProperties">
|
||||
<summary>
|
||||
List of property names to exclude when <see cref="P:NLog.Layouts.XmlElementBase.IncludeAllProperties"/> is true
|
||||
@@ -26328,6 +26393,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.NLogViewerTarget.IncludeScopeProperties">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary contents.
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.NLogViewerTarget.IncludeMdlc">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary contents.
|
||||
@@ -26352,6 +26423,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.NLogViewerTarget.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.NLogViewerTarget.NdcItemSeparator">
|
||||
<summary>
|
||||
Gets or sets the NDC item separator.
|
||||
@@ -26941,6 +27018,10 @@
|
||||
<inheritdoc/>
|
||||
<docgen category='Layout Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.TargetWithContext.IncludeScopeProperties">
|
||||
<inheritdoc/>
|
||||
<docgen category='Layout Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.TargetWithContext.IncludeMdlc">
|
||||
<inheritdoc/>
|
||||
<docgen category='Layout Options' order='10' />
|
||||
BIN
app/packages/NLog.4.7.15/lib/net40-client/NLog.dll
vendored
Normal file
BIN
app/packages/NLog.4.7.15/lib/net40-client/NLog.dll
vendored
Normal file
Binary file not shown.
@@ -1827,6 +1827,11 @@
|
||||
Gets the method info.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:NLog.Conditions.ConditionMethodExpression.MethodParameters">
|
||||
<summary>
|
||||
Gets the method parameters
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:NLog.Conditions.ConditionMethodExpression.ToString">
|
||||
<summary>
|
||||
Returns a string representation of the expression.
|
||||
@@ -4994,12 +4999,24 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.IIncludeContext.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.IIncludeContext.IncludeAllProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.IIncludeContext.IncludeScopeProperties">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.IIncludeContext.IncludeMdlc">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
@@ -12417,6 +12434,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.LayoutRenderers.Log4JXmlEventLayoutRenderer.IncludeScopeProperties">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.LayoutRenderers.Log4JXmlEventLayoutRenderer.IncludeMdlc">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
@@ -12435,6 +12458,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.LayoutRenderers.Log4JXmlEventLayoutRenderer.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='JSON Output' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.LayoutRenderers.Log4JXmlEventLayoutRenderer.IncludeAllProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
@@ -14784,12 +14813,24 @@
|
||||
</summary>
|
||||
<docgen category='JSON Output' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.JsonLayout.IncludeScopeProperties">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
</summary>
|
||||
<docgen category='JSON Output' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.JsonLayout.IncludeAllProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log event (as JSON)
|
||||
</summary>
|
||||
<docgen category='JSON Output' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.JsonLayout.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log event (as JSON)
|
||||
</summary>
|
||||
<docgen category='JSON Output' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.JsonLayout.ExcludeEmptyProperties">
|
||||
<summary>
|
||||
Gets or sets the option to exclude null/empty properties from the log event (as JSON)
|
||||
@@ -15141,6 +15182,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.Log4JXmlEventLayout.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.Log4JXmlEventLayout.IncludeAllProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
@@ -15153,6 +15200,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.Log4JXmlEventLayout.IncludeScopeProperties">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.Log4JXmlEventLayout.IncludeMdlc">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
@@ -15464,12 +15517,24 @@
|
||||
</summary>
|
||||
<docgen category='LogEvent Properties XML Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.XmlElementBase.IncludeScopeProperties">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
</summary>
|
||||
<docgen category='LogEvent Properties XML Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.XmlElementBase.IncludeAllProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log event (as XML)
|
||||
</summary>
|
||||
<docgen category='LogEvent Properties XML Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.XmlElementBase.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log event (as XML)
|
||||
</summary>
|
||||
<docgen category='LogEvent Properties XML Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.XmlElementBase.ExcludeProperties">
|
||||
<summary>
|
||||
List of property names to exclude when <see cref="P:NLog.Layouts.XmlElementBase.IncludeAllProperties"/> is true
|
||||
@@ -26511,6 +26576,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.NLogViewerTarget.IncludeScopeProperties">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary contents.
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.NLogViewerTarget.IncludeMdlc">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary contents.
|
||||
@@ -26535,6 +26606,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.NLogViewerTarget.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.NLogViewerTarget.NdcItemSeparator">
|
||||
<summary>
|
||||
Gets or sets the NDC item separator.
|
||||
@@ -27124,6 +27201,10 @@
|
||||
<inheritdoc/>
|
||||
<docgen category='Layout Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.TargetWithContext.IncludeScopeProperties">
|
||||
<inheritdoc/>
|
||||
<docgen category='Layout Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.TargetWithContext.IncludeMdlc">
|
||||
<inheritdoc/>
|
||||
<docgen category='Layout Options' order='10' />
|
||||
BIN
app/packages/NLog.4.7.15/lib/net45/NLog.dll
vendored
Normal file
BIN
app/packages/NLog.4.7.15/lib/net45/NLog.dll
vendored
Normal file
Binary file not shown.
@@ -1827,6 +1827,11 @@
|
||||
Gets the method info.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:NLog.Conditions.ConditionMethodExpression.MethodParameters">
|
||||
<summary>
|
||||
Gets the method parameters
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:NLog.Conditions.ConditionMethodExpression.ToString">
|
||||
<summary>
|
||||
Returns a string representation of the expression.
|
||||
@@ -5058,12 +5063,24 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.IIncludeContext.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.IIncludeContext.IncludeAllProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.IIncludeContext.IncludeScopeProperties">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.IIncludeContext.IncludeMdlc">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
@@ -12544,6 +12561,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.LayoutRenderers.Log4JXmlEventLayoutRenderer.IncludeScopeProperties">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.LayoutRenderers.Log4JXmlEventLayoutRenderer.IncludeMdlc">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
@@ -12562,6 +12585,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.LayoutRenderers.Log4JXmlEventLayoutRenderer.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='JSON Output' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.LayoutRenderers.Log4JXmlEventLayoutRenderer.IncludeAllProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
@@ -14911,12 +14940,24 @@
|
||||
</summary>
|
||||
<docgen category='JSON Output' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.JsonLayout.IncludeScopeProperties">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
</summary>
|
||||
<docgen category='JSON Output' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.JsonLayout.IncludeAllProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log event (as JSON)
|
||||
</summary>
|
||||
<docgen category='JSON Output' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.JsonLayout.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log event (as JSON)
|
||||
</summary>
|
||||
<docgen category='JSON Output' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.JsonLayout.ExcludeEmptyProperties">
|
||||
<summary>
|
||||
Gets or sets the option to exclude null/empty properties from the log event (as JSON)
|
||||
@@ -15268,6 +15309,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.Log4JXmlEventLayout.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.Log4JXmlEventLayout.IncludeAllProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
@@ -15280,6 +15327,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.Log4JXmlEventLayout.IncludeScopeProperties">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.Log4JXmlEventLayout.IncludeMdlc">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
@@ -15591,12 +15644,24 @@
|
||||
</summary>
|
||||
<docgen category='LogEvent Properties XML Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.XmlElementBase.IncludeScopeProperties">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
</summary>
|
||||
<docgen category='LogEvent Properties XML Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.XmlElementBase.IncludeAllProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log event (as XML)
|
||||
</summary>
|
||||
<docgen category='LogEvent Properties XML Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.XmlElementBase.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log event (as XML)
|
||||
</summary>
|
||||
<docgen category='LogEvent Properties XML Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.XmlElementBase.ExcludeProperties">
|
||||
<summary>
|
||||
List of property names to exclude when <see cref="P:NLog.Layouts.XmlElementBase.IncludeAllProperties"/> is true
|
||||
@@ -26711,6 +26776,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.NLogViewerTarget.IncludeScopeProperties">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary contents.
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.NLogViewerTarget.IncludeMdlc">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary contents.
|
||||
@@ -26735,6 +26806,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.NLogViewerTarget.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.NLogViewerTarget.NdcItemSeparator">
|
||||
<summary>
|
||||
Gets or sets the NDC item separator.
|
||||
@@ -27324,6 +27401,10 @@
|
||||
<inheritdoc/>
|
||||
<docgen category='Layout Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.TargetWithContext.IncludeScopeProperties">
|
||||
<inheritdoc/>
|
||||
<docgen category='Layout Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.TargetWithContext.IncludeMdlc">
|
||||
<inheritdoc/>
|
||||
<docgen category='Layout Options' order='10' />
|
||||
BIN
app/packages/NLog.4.7.15/lib/netstandard1.3/NLog.dll
vendored
Normal file
BIN
app/packages/NLog.4.7.15/lib/netstandard1.3/NLog.dll
vendored
Normal file
Binary file not shown.
@@ -1782,6 +1782,11 @@
|
||||
Gets the method info.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:NLog.Conditions.ConditionMethodExpression.MethodParameters">
|
||||
<summary>
|
||||
Gets the method parameters
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:NLog.Conditions.ConditionMethodExpression.ToString">
|
||||
<summary>
|
||||
Returns a string representation of the expression.
|
||||
@@ -4926,12 +4931,24 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.IIncludeContext.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.IIncludeContext.IncludeAllProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.IIncludeContext.IncludeScopeProperties">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.IIncludeContext.IncludeMdlc">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
@@ -11921,6 +11938,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.LayoutRenderers.Log4JXmlEventLayoutRenderer.IncludeScopeProperties">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.LayoutRenderers.Log4JXmlEventLayoutRenderer.IncludeMdlc">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
@@ -11939,6 +11962,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.LayoutRenderers.Log4JXmlEventLayoutRenderer.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='JSON Output' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.LayoutRenderers.Log4JXmlEventLayoutRenderer.IncludeAllProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
@@ -13862,12 +13891,24 @@
|
||||
</summary>
|
||||
<docgen category='JSON Output' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.JsonLayout.IncludeScopeProperties">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
</summary>
|
||||
<docgen category='JSON Output' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.JsonLayout.IncludeAllProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log event (as JSON)
|
||||
</summary>
|
||||
<docgen category='JSON Output' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.JsonLayout.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log event (as JSON)
|
||||
</summary>
|
||||
<docgen category='JSON Output' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.JsonLayout.ExcludeEmptyProperties">
|
||||
<summary>
|
||||
Gets or sets the option to exclude null/empty properties from the log event (as JSON)
|
||||
@@ -14219,6 +14260,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.Log4JXmlEventLayout.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.Log4JXmlEventLayout.IncludeAllProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
@@ -14231,6 +14278,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.Log4JXmlEventLayout.IncludeScopeProperties">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.Log4JXmlEventLayout.IncludeMdlc">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
@@ -14542,12 +14595,24 @@
|
||||
</summary>
|
||||
<docgen category='LogEvent Properties XML Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.XmlElementBase.IncludeScopeProperties">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
</summary>
|
||||
<docgen category='LogEvent Properties XML Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.XmlElementBase.IncludeAllProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log event (as XML)
|
||||
</summary>
|
||||
<docgen category='LogEvent Properties XML Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.XmlElementBase.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log event (as XML)
|
||||
</summary>
|
||||
<docgen category='LogEvent Properties XML Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.XmlElementBase.ExcludeProperties">
|
||||
<summary>
|
||||
List of property names to exclude when <see cref="P:NLog.Layouts.XmlElementBase.IncludeAllProperties"/> is true
|
||||
@@ -23290,6 +23355,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.NLogViewerTarget.IncludeScopeProperties">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary contents.
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.NLogViewerTarget.IncludeMdlc">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary contents.
|
||||
@@ -23314,6 +23385,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.NLogViewerTarget.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.NLogViewerTarget.NdcItemSeparator">
|
||||
<summary>
|
||||
Gets or sets the NDC item separator.
|
||||
@@ -23764,6 +23841,10 @@
|
||||
<inheritdoc/>
|
||||
<docgen category='Layout Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.TargetWithContext.IncludeScopeProperties">
|
||||
<inheritdoc/>
|
||||
<docgen category='Layout Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.TargetWithContext.IncludeMdlc">
|
||||
<inheritdoc/>
|
||||
<docgen category='Layout Options' order='10' />
|
||||
BIN
app/packages/NLog.4.7.15/lib/netstandard1.5/NLog.dll
vendored
Normal file
BIN
app/packages/NLog.4.7.15/lib/netstandard1.5/NLog.dll
vendored
Normal file
Binary file not shown.
@@ -1814,6 +1814,11 @@
|
||||
Gets the method info.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:NLog.Conditions.ConditionMethodExpression.MethodParameters">
|
||||
<summary>
|
||||
Gets the method parameters
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:NLog.Conditions.ConditionMethodExpression.ToString">
|
||||
<summary>
|
||||
Returns a string representation of the expression.
|
||||
@@ -5012,12 +5017,24 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.IIncludeContext.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.IIncludeContext.IncludeAllProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.IIncludeContext.IncludeScopeProperties">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.IIncludeContext.IncludeMdlc">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
@@ -12189,6 +12206,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.LayoutRenderers.Log4JXmlEventLayoutRenderer.IncludeScopeProperties">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.LayoutRenderers.Log4JXmlEventLayoutRenderer.IncludeMdlc">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
@@ -12207,6 +12230,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.LayoutRenderers.Log4JXmlEventLayoutRenderer.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='JSON Output' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.LayoutRenderers.Log4JXmlEventLayoutRenderer.IncludeAllProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
@@ -14275,12 +14304,24 @@
|
||||
</summary>
|
||||
<docgen category='JSON Output' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.JsonLayout.IncludeScopeProperties">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
</summary>
|
||||
<docgen category='JSON Output' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.JsonLayout.IncludeAllProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log event (as JSON)
|
||||
</summary>
|
||||
<docgen category='JSON Output' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.JsonLayout.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log event (as JSON)
|
||||
</summary>
|
||||
<docgen category='JSON Output' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.JsonLayout.ExcludeEmptyProperties">
|
||||
<summary>
|
||||
Gets or sets the option to exclude null/empty properties from the log event (as JSON)
|
||||
@@ -14632,6 +14673,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.Log4JXmlEventLayout.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.Log4JXmlEventLayout.IncludeAllProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
@@ -14644,6 +14691,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.Log4JXmlEventLayout.IncludeScopeProperties">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.Log4JXmlEventLayout.IncludeMdlc">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
@@ -14955,12 +15008,24 @@
|
||||
</summary>
|
||||
<docgen category='LogEvent Properties XML Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.XmlElementBase.IncludeScopeProperties">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
</summary>
|
||||
<docgen category='LogEvent Properties XML Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.XmlElementBase.IncludeAllProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log event (as XML)
|
||||
</summary>
|
||||
<docgen category='LogEvent Properties XML Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.XmlElementBase.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log event (as XML)
|
||||
</summary>
|
||||
<docgen category='LogEvent Properties XML Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.XmlElementBase.ExcludeProperties">
|
||||
<summary>
|
||||
List of property names to exclude when <see cref="P:NLog.Layouts.XmlElementBase.IncludeAllProperties"/> is true
|
||||
@@ -24221,6 +24286,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.NLogViewerTarget.IncludeScopeProperties">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary contents.
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.NLogViewerTarget.IncludeMdlc">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary contents.
|
||||
@@ -24245,6 +24316,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.NLogViewerTarget.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.NLogViewerTarget.NdcItemSeparator">
|
||||
<summary>
|
||||
Gets or sets the NDC item separator.
|
||||
@@ -24695,6 +24772,10 @@
|
||||
<inheritdoc/>
|
||||
<docgen category='Layout Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.TargetWithContext.IncludeScopeProperties">
|
||||
<inheritdoc/>
|
||||
<docgen category='Layout Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.TargetWithContext.IncludeMdlc">
|
||||
<inheritdoc/>
|
||||
<docgen category='Layout Options' order='10' />
|
||||
BIN
app/packages/NLog.4.7.15/lib/netstandard2.0/NLog.dll
vendored
Normal file
BIN
app/packages/NLog.4.7.15/lib/netstandard2.0/NLog.dll
vendored
Normal file
Binary file not shown.
@@ -1827,6 +1827,11 @@
|
||||
Gets the method info.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:NLog.Conditions.ConditionMethodExpression.MethodParameters">
|
||||
<summary>
|
||||
Gets the method parameters
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:NLog.Conditions.ConditionMethodExpression.ToString">
|
||||
<summary>
|
||||
Returns a string representation of the expression.
|
||||
@@ -5038,12 +5043,24 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.IIncludeContext.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.IIncludeContext.IncludeAllProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.IIncludeContext.IncludeScopeProperties">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.IIncludeContext.IncludeMdlc">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
@@ -12403,6 +12420,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.LayoutRenderers.Log4JXmlEventLayoutRenderer.IncludeScopeProperties">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.LayoutRenderers.Log4JXmlEventLayoutRenderer.IncludeMdlc">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
@@ -12421,6 +12444,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.LayoutRenderers.Log4JXmlEventLayoutRenderer.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='JSON Output' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.LayoutRenderers.Log4JXmlEventLayoutRenderer.IncludeAllProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
@@ -14553,12 +14582,24 @@
|
||||
</summary>
|
||||
<docgen category='JSON Output' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.JsonLayout.IncludeScopeProperties">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
</summary>
|
||||
<docgen category='JSON Output' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.JsonLayout.IncludeAllProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log event (as JSON)
|
||||
</summary>
|
||||
<docgen category='JSON Output' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.JsonLayout.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log event (as JSON)
|
||||
</summary>
|
||||
<docgen category='JSON Output' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.JsonLayout.ExcludeEmptyProperties">
|
||||
<summary>
|
||||
Gets or sets the option to exclude null/empty properties from the log event (as JSON)
|
||||
@@ -14910,6 +14951,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.Log4JXmlEventLayout.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.Log4JXmlEventLayout.IncludeAllProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
@@ -14922,6 +14969,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.Log4JXmlEventLayout.IncludeScopeProperties">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.Log4JXmlEventLayout.IncludeMdlc">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
@@ -15233,12 +15286,24 @@
|
||||
</summary>
|
||||
<docgen category='LogEvent Properties XML Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.XmlElementBase.IncludeScopeProperties">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
</summary>
|
||||
<docgen category='LogEvent Properties XML Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.XmlElementBase.IncludeAllProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log event (as XML)
|
||||
</summary>
|
||||
<docgen category='LogEvent Properties XML Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.XmlElementBase.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log event (as XML)
|
||||
</summary>
|
||||
<docgen category='LogEvent Properties XML Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.XmlElementBase.ExcludeProperties">
|
||||
<summary>
|
||||
List of property names to exclude when <see cref="P:NLog.Layouts.XmlElementBase.IncludeAllProperties"/> is true
|
||||
@@ -25009,6 +25074,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.NLogViewerTarget.IncludeScopeProperties">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary contents.
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.NLogViewerTarget.IncludeMdlc">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary contents.
|
||||
@@ -25033,6 +25104,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.NLogViewerTarget.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.NLogViewerTarget.NdcItemSeparator">
|
||||
<summary>
|
||||
Gets or sets the NDC item separator.
|
||||
@@ -25503,6 +25580,10 @@
|
||||
<inheritdoc/>
|
||||
<docgen category='Layout Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.TargetWithContext.IncludeScopeProperties">
|
||||
<inheritdoc/>
|
||||
<docgen category='Layout Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.TargetWithContext.IncludeMdlc">
|
||||
<inheritdoc/>
|
||||
<docgen category='Layout Options' order='10' />
|
||||
BIN
app/packages/NLog.4.7.15/lib/sl4/NLog.dll
vendored
Normal file
BIN
app/packages/NLog.4.7.15/lib/sl4/NLog.dll
vendored
Normal file
Binary file not shown.
@@ -1797,6 +1797,11 @@
|
||||
Gets the method info.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:NLog.Conditions.ConditionMethodExpression.MethodParameters">
|
||||
<summary>
|
||||
Gets the method parameters
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:NLog.Conditions.ConditionMethodExpression.ToString">
|
||||
<summary>
|
||||
Returns a string representation of the expression.
|
||||
@@ -4885,6 +4890,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.IIncludeContext.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.IIncludeContext.IncludeAllProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
@@ -10030,6 +10041,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.LayoutRenderers.Log4JXmlEventLayoutRenderer.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='JSON Output' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.LayoutRenderers.Log4JXmlEventLayoutRenderer.IncludeAllProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
@@ -11743,6 +11760,12 @@
|
||||
</summary>
|
||||
<docgen category='JSON Output' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.JsonLayout.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log event (as JSON)
|
||||
</summary>
|
||||
<docgen category='JSON Output' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.JsonLayout.ExcludeEmptyProperties">
|
||||
<summary>
|
||||
Gets or sets the option to exclude null/empty properties from the log event (as JSON)
|
||||
@@ -12094,6 +12117,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.Log4JXmlEventLayout.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.Log4JXmlEventLayout.IncludeAllProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
@@ -12405,6 +12434,12 @@
|
||||
</summary>
|
||||
<docgen category='LogEvent Properties XML Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.XmlElementBase.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log event (as XML)
|
||||
</summary>
|
||||
<docgen category='LogEvent Properties XML Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.XmlElementBase.ExcludeProperties">
|
||||
<summary>
|
||||
List of property names to exclude when <see cref="P:NLog.Layouts.XmlElementBase.IncludeAllProperties"/> is true
|
||||
@@ -19646,6 +19681,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.NLogViewerTarget.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.NLogViewerTarget.NdcItemSeparator">
|
||||
<summary>
|
||||
Gets or sets the NDC item separator.
|
||||
BIN
app/packages/NLog.4.7.15/lib/sl5/NLog.dll
vendored
Normal file
BIN
app/packages/NLog.4.7.15/lib/sl5/NLog.dll
vendored
Normal file
Binary file not shown.
@@ -1797,6 +1797,11 @@
|
||||
Gets the method info.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:NLog.Conditions.ConditionMethodExpression.MethodParameters">
|
||||
<summary>
|
||||
Gets the method parameters
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:NLog.Conditions.ConditionMethodExpression.ToString">
|
||||
<summary>
|
||||
Returns a string representation of the expression.
|
||||
@@ -4885,6 +4890,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.IIncludeContext.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.IIncludeContext.IncludeAllProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
@@ -10030,6 +10041,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.LayoutRenderers.Log4JXmlEventLayoutRenderer.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='JSON Output' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.LayoutRenderers.Log4JXmlEventLayoutRenderer.IncludeAllProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
@@ -11743,6 +11760,12 @@
|
||||
</summary>
|
||||
<docgen category='JSON Output' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.JsonLayout.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log event (as JSON)
|
||||
</summary>
|
||||
<docgen category='JSON Output' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.JsonLayout.ExcludeEmptyProperties">
|
||||
<summary>
|
||||
Gets or sets the option to exclude null/empty properties from the log event (as JSON)
|
||||
@@ -12094,6 +12117,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.Log4JXmlEventLayout.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.Log4JXmlEventLayout.IncludeAllProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
@@ -12405,6 +12434,12 @@
|
||||
</summary>
|
||||
<docgen category='LogEvent Properties XML Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.XmlElementBase.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log event (as XML)
|
||||
</summary>
|
||||
<docgen category='LogEvent Properties XML Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.XmlElementBase.ExcludeProperties">
|
||||
<summary>
|
||||
List of property names to exclude when <see cref="P:NLog.Layouts.XmlElementBase.IncludeAllProperties"/> is true
|
||||
@@ -19812,6 +19847,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.NLogViewerTarget.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.NLogViewerTarget.NdcItemSeparator">
|
||||
<summary>
|
||||
Gets or sets the NDC item separator.
|
||||
BIN
app/packages/NLog.4.7.15/lib/wp8/NLog.dll
vendored
Normal file
BIN
app/packages/NLog.4.7.15/lib/wp8/NLog.dll
vendored
Normal file
Binary file not shown.
@@ -1797,6 +1797,11 @@
|
||||
Gets the method info.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:NLog.Conditions.ConditionMethodExpression.MethodParameters">
|
||||
<summary>
|
||||
Gets the method parameters
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:NLog.Conditions.ConditionMethodExpression.ToString">
|
||||
<summary>
|
||||
Returns a string representation of the expression.
|
||||
@@ -4885,6 +4890,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.IIncludeContext.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.IIncludeContext.IncludeAllProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
@@ -10023,6 +10034,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.LayoutRenderers.Log4JXmlEventLayoutRenderer.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='JSON Output' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.LayoutRenderers.Log4JXmlEventLayoutRenderer.IncludeAllProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
@@ -11713,6 +11730,12 @@
|
||||
</summary>
|
||||
<docgen category='JSON Output' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.JsonLayout.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log event (as JSON)
|
||||
</summary>
|
||||
<docgen category='JSON Output' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.JsonLayout.ExcludeEmptyProperties">
|
||||
<summary>
|
||||
Gets or sets the option to exclude null/empty properties from the log event (as JSON)
|
||||
@@ -12064,6 +12087,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.Log4JXmlEventLayout.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.Log4JXmlEventLayout.IncludeAllProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
@@ -12375,6 +12404,12 @@
|
||||
</summary>
|
||||
<docgen category='LogEvent Properties XML Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.XmlElementBase.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log event (as XML)
|
||||
</summary>
|
||||
<docgen category='LogEvent Properties XML Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.XmlElementBase.ExcludeProperties">
|
||||
<summary>
|
||||
List of property names to exclude when <see cref="P:NLog.Layouts.XmlElementBase.IncludeAllProperties"/> is true
|
||||
@@ -18988,6 +19023,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.NLogViewerTarget.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.NLogViewerTarget.NdcItemSeparator">
|
||||
<summary>
|
||||
Gets or sets the NDC item separator.
|
||||
BIN
app/packages/NLog.4.7.15/lib/xamarinios10/NLog.dll
vendored
Normal file
BIN
app/packages/NLog.4.7.15/lib/xamarinios10/NLog.dll
vendored
Normal file
Binary file not shown.
@@ -1810,6 +1810,11 @@
|
||||
Gets the method info.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:NLog.Conditions.ConditionMethodExpression.MethodParameters">
|
||||
<summary>
|
||||
Gets the method parameters
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:NLog.Conditions.ConditionMethodExpression.ToString">
|
||||
<summary>
|
||||
Returns a string representation of the expression.
|
||||
@@ -4009,11 +4014,6 @@
|
||||
- Update TemplateXSD.xml for changes outside targets
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="F:NLog.Config.XmlLoggingConfiguration.AssetsPrefix">
|
||||
<summary>
|
||||
Prefix for assets in Xamarin Android
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:NLog.Config.XmlLoggingConfiguration.#ctor(System.String)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:NLog.Config.XmlLoggingConfiguration" /> class.
|
||||
@@ -4926,12 +4926,24 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.IIncludeContext.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.IIncludeContext.IncludeAllProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.IIncludeContext.IncludeScopeProperties">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.IIncludeContext.IncludeMdlc">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
@@ -12055,6 +12067,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.LayoutRenderers.Log4JXmlEventLayoutRenderer.IncludeScopeProperties">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.LayoutRenderers.Log4JXmlEventLayoutRenderer.IncludeMdlc">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
@@ -12073,6 +12091,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.LayoutRenderers.Log4JXmlEventLayoutRenderer.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='JSON Output' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.LayoutRenderers.Log4JXmlEventLayoutRenderer.IncludeAllProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
@@ -12420,27 +12444,6 @@
|
||||
<member name="M:NLog.LayoutRenderers.ProcessDirLayoutRenderer.Append(System.Text.StringBuilder,NLog.LogEventInfo)">
|
||||
<inheritdoc/>
|
||||
</member>
|
||||
<member name="T:NLog.LayoutRenderers.ProcessIdLayoutRenderer">
|
||||
<summary>
|
||||
The identifier of the current process.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:NLog.LayoutRenderers.ProcessIdLayoutRenderer.#ctor">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:NLog.LayoutRenderers.ProcessIdLayoutRenderer" /> class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:NLog.LayoutRenderers.ProcessIdLayoutRenderer.#ctor(NLog.Internal.Fakeables.IAppEnvironment)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:NLog.LayoutRenderers.ProcessIdLayoutRenderer" /> class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:NLog.LayoutRenderers.ProcessIdLayoutRenderer.Append(System.Text.StringBuilder,NLog.LogEventInfo)">
|
||||
<inheritdoc />
|
||||
</member>
|
||||
<member name="M:NLog.LayoutRenderers.ProcessIdLayoutRenderer.NLog#Internal#IRawValue#TryGetRawValue(NLog.LogEventInfo,System.Object@)">
|
||||
<inheritdoc />
|
||||
</member>
|
||||
<member name="T:NLog.LayoutRenderers.ProcessInfoLayoutRenderer">
|
||||
<summary>
|
||||
The information about the running process.
|
||||
@@ -12667,34 +12670,6 @@
|
||||
Working Set Size (64-bit).
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:NLog.LayoutRenderers.ProcessNameLayoutRenderer">
|
||||
<summary>
|
||||
The name of the current process.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:NLog.LayoutRenderers.ProcessNameLayoutRenderer.FullName">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to write the full path to the process executable.
|
||||
</summary>
|
||||
<docgen category='Rendering Options' order='10' />
|
||||
</member>
|
||||
<member name="M:NLog.LayoutRenderers.ProcessNameLayoutRenderer.#ctor">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:NLog.LayoutRenderers.ProcessNameLayoutRenderer" /> class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:NLog.LayoutRenderers.ProcessNameLayoutRenderer.#ctor(NLog.Internal.Fakeables.IAppEnvironment)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:NLog.LayoutRenderers.ProcessNameLayoutRenderer" /> class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:NLog.LayoutRenderers.ProcessNameLayoutRenderer.Append(System.Text.StringBuilder,NLog.LogEventInfo)">
|
||||
<summary>
|
||||
Renders the current process name (optionally with a full path).
|
||||
</summary>
|
||||
<param name="builder">The <see cref="T:System.Text.StringBuilder"/> to append the rendered data to.</param>
|
||||
<param name="logEvent">Logging event.</param>
|
||||
</member>
|
||||
<member name="T:NLog.LayoutRenderers.ProcessTimeLayoutRenderer">
|
||||
<summary>
|
||||
The process time in format HH:mm:ss.mmm.
|
||||
@@ -14224,12 +14199,24 @@
|
||||
</summary>
|
||||
<docgen category='JSON Output' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.JsonLayout.IncludeScopeProperties">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
</summary>
|
||||
<docgen category='JSON Output' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.JsonLayout.IncludeAllProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log event (as JSON)
|
||||
</summary>
|
||||
<docgen category='JSON Output' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.JsonLayout.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log event (as JSON)
|
||||
</summary>
|
||||
<docgen category='JSON Output' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.JsonLayout.ExcludeEmptyProperties">
|
||||
<summary>
|
||||
Gets or sets the option to exclude null/empty properties from the log event (as JSON)
|
||||
@@ -14581,6 +14568,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.Log4JXmlEventLayout.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.Log4JXmlEventLayout.IncludeAllProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
@@ -14593,6 +14586,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.Log4JXmlEventLayout.IncludeScopeProperties">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.Log4JXmlEventLayout.IncludeMdlc">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
@@ -14904,12 +14903,24 @@
|
||||
</summary>
|
||||
<docgen category='LogEvent Properties XML Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.XmlElementBase.IncludeScopeProperties">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include contents of the <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary.
|
||||
</summary>
|
||||
<docgen category='LogEvent Properties XML Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.XmlElementBase.IncludeAllProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log event (as XML)
|
||||
</summary>
|
||||
<docgen category='LogEvent Properties XML Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.XmlElementBase.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log event (as XML)
|
||||
</summary>
|
||||
<docgen category='LogEvent Properties XML Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Layouts.XmlElementBase.ExcludeProperties">
|
||||
<summary>
|
||||
List of property names to exclude when <see cref="P:NLog.Layouts.XmlElementBase.IncludeAllProperties"/> is true
|
||||
@@ -24171,6 +24182,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.NLogViewerTarget.IncludeScopeProperties">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary contents.
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.NLogViewerTarget.IncludeMdlc">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to include <see cref="T:NLog.MappedDiagnosticsLogicalContext"/> dictionary contents.
|
||||
@@ -24195,6 +24212,12 @@
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.NLogViewerTarget.IncludeEventProperties">
|
||||
<summary>
|
||||
Gets or sets the option to include all properties from the log events
|
||||
</summary>
|
||||
<docgen category='Payload Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.NLogViewerTarget.NdcItemSeparator">
|
||||
<summary>
|
||||
Gets or sets the NDC item separator.
|
||||
@@ -24665,6 +24688,10 @@
|
||||
<inheritdoc/>
|
||||
<docgen category='Layout Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.TargetWithContext.IncludeScopeProperties">
|
||||
<inheritdoc/>
|
||||
<docgen category='Layout Options' order='10' />
|
||||
</member>
|
||||
<member name="P:NLog.Targets.TargetWithContext.IncludeMdlc">
|
||||
<inheritdoc/>
|
||||
<docgen category='Layout Options' order='10' />
|
||||
Reference in New Issue
Block a user