LoggingContext Properties |
The LoggingContext type exposes the following members.
Name | Description | |
---|---|---|
ActivationContext |
Gets the LoggingContext in which the current context was activated. If the current
context has been resumed, ActivationContext refers to the context in which the context was resumed.
| |
Backend |
Gets the parent LoggingBackend of the current context.
| |
CurrentTransaction |
Gets the LoggingTransaction defined or inherited by the current context.
| |
DefinedTransaction |
Gets the LoggingTransaction defined by the current context.
| |
Description |
Gets the description of the current context. The description is typically set by the LogRecordBuilder when building the opening record of a context.
| |
EventData |
Gets the LogEventData (i.e. the source of logging properties) associated with the current LoggingContext.
| |
HierarchicalContextIdInfo |
Exposes the IHierarchicalContextIdInfo for the current context. Used by SyntheticIdFormatter.
| |
Id |
Gets or set the identifier of the current context. This value is created
according to the strategy set in LoggingBackend.Options.ContextIdGenerationStrategy.
| |
IdGenerationStrategy |
Gets the ContextIdGenerationStrategy used to generate the Id property
for the current context.
| |
IndentLevel |
Gets or sets the indentation level for the current context.
| |
IsAsync |
Determines whether the current LoggingContext represents an async method or an asynchronous custom activity.
| |
IsDisposed |
Determines whether the current context has been disposed.
| |
IsHidden |
Determines whether the current LoggingContext is hidden. Hidden contexts may define properties but should not be rendered.
| |
IsSharable |
Determines whether the current LoggingContext can be accessed outside of its
nominal lifetime (for instance after the method has completed or a custom activity has been closed).
Since contexts can be pooled and reused, consumers must call the MakeSharable() method
if they want to keep a reference to the LoggingContext and access it after its nominal lifetime has completed.
| |
Kind |
Gets the kind of the current context.
| |
MemberName |
Gets the name of the method or property related to the current context.
| |
ParentContext | Obsolete.
Gets the LoggingContext in which the current context was activated. Previously, this was the logical parent instead.
| |
Properties | Obsolete.
Gets the logging properties added with the associated activity.
| |
Source |
Gets the LoggingTypeSource corresponding, typically, to the declaring type of the member
associated to the current context.
| |
SyntheticId |
Gets a cross-process globally unique identifier for the current LoggingContext.
This value is created according to value of the LoggingBackend.Options.SyntheticIdFormatter property.
| |
SyntheticParentId |
When this property returns a non-null value, the SyntheticId property shall use the
value of the SyntheticParentId property as the parent identifier, instead of recursively building
the synthetic identifier based on ParentContext. You can set this property when you open a custom
activity by configuring the OpenActivityOptions object.
| |
SyntheticRootId |
When this property returns a non-null value, the SyntheticId property shall return the
same value as the SyntheticRootId property, instead of starting with the id of the parent context. You can set this property when you open a custom
activity by configuring the OpenActivityOptions object.
| |
ThreadContext |
Gets the ThreadLoggingContext for the thread in which the current LoggingContext
is currently executed.
|