IEnrichmentTagCollector.Add(String, Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Adds a tag in form of a key/value pair.
public:
void Add(System::String ^ tagName, System::Object ^ tagValue);
public void Add (string tagName, object tagValue);
abstract member Add : string * obj -> unit
Public Sub Add (tagName As String, tagValue As Object)
Parameters
- tagName
- String
Enrichment property key.
- tagValue
- Object
Enrichment property value.
Exceptions
tagName
is an empty string.
Either tagName
or tagValue
is null
.
Remarks
For log enrichment, tagValue
is serialized as per the rules below:
- Arrays: Recognized and serialized in a loop.
- IDictionary: Recognized as IDictionary<string, object> and serialized in a loop.
- DateTime: Recognized and serialized after converting to ToUniversalTime().
- All other primitive types: Converted to String as is and serialized.
tagValue
is converted to String format using ToString() method.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.