 | ScopeContextPushProperty Method (String, Object) |
Updates the logical scope context with provided property
Namespace:
NLog
Assembly:
NLog (in NLog.dll) Version: 6.0.0+cfb73701cda54e2410b006f649f072e90daef707
Syntaxpublic static IDisposable PushProperty(
string key,
Object? value
)
Public Shared Function PushProperty (
key As String,
value As Object
) As IDisposable
Dim key As String
Dim value As Object
Dim returnValue As IDisposable
returnValue = ScopeContext.PushProperty(key,
value)
static member PushProperty :
key : string *
value : Object -> IDisposable
Parameters
- key
- Type: SystemString
Name of property - value
- Type: SystemObject
Value of property
Return Value
Type:
IDisposableA disposable object that removes the properties from logical context scope on dispose.
RemarksScope dictionary keys are case-insensitive
See Also