 | MemoryTargetLogs Property |
Namespace:
NLog.Targets
Assembly:
NLog (in NLog.dll) Version: 5.5.0+1873145cbc26e0312d9481234d69ce7dc68aac4e
Syntaxpublic IList<string> Logs { get; }
Public ReadOnly Property Logs As IList(Of String)
Get
Dim instance As MemoryTarget
Dim value As IList(Of String)
value = instance.Logs
member Logs : IList<string> with get
Property Value
Type:
IListString
Remarks
Be careful when enumerating, as NLog target is blocked from writing during enumeration (blocks application logging)
See Also