OpenEdge.Logging.MDC
- Last Updated: January 15, 2026
- 2 minute read
- OpenEdge
- Version 12.8
- Documentation
|
Method Summary
| Options | Name | Purpose | |
|---|---|---|---|
| Clear () |
/* Clear all entries in the MDC */
|
||
| CHARACTER Get (character) |
/* Get the context identified by the key parameter.
@param character A non-empty key name
@return character A value associated with the key */
|
||
| LOGICAL Has (character) |
/* Indicates whether a key exists in the store.
@param character A non-empty key name
@return logical TRUE if the key is in the context store; FALSE otherwise */
|
||
| LOGICAL IsEmpty () |
/* Indicates whether there is any contest in the store.
@return logical Returns TRUE if there's at least one entry in the store */
|
||
| Put (character, character) |
/* Adds a context value to the MDC context
@param character A non-empty key name
@param character A value associated with the key */
|
||
| Remove (character) |
/* Remove the context identified by the key parameter.
@param character A non-empty key name */
|
Constructor Summary
| Options | Name | Purpose | |
|---|---|---|---|
| MDC () |
/* Static constructor */
|
||
| MDC () |
/* Default constructor.
PRIVATE since we never want this class instantiated. */
|
Method Detail
Clear ()
|
||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
CHARACTER Get (character)
|
||||||||||||||||
LOGICAL Has (character)
|
||||||||||||||||
LOGICAL IsEmpty ()
|
||||||||||||||||
Put (character, character)
|
||||||||||||||||
Remove (character)
|
||||||||||||||||
Constructor Detail
STATIC MDC ()
|
||||||||
|---|---|---|---|---|---|---|---|---|
MDC ()
|
||||||||