Represents a mutable set of structured logging properties.
public struct LogProperties : IEnumerable, IDisposable
This type is a mutable value type. Avoid copying instances after they are populated, and dispose only the original instance that owns the rented buffer.
kind:method, kind:property, kind:ctor. Press Esc to clear.CountGets the number of properties in this instance.Add(ReadOnlySpan<Char>)Adds an unnamed text property.Add(String, Boolean)Adds a named boolean property.Add(String, ReadOnlySpan<Char>)Adds a named text property.Add(String, ref DefaultInterpolatedStringHandler)Adds a named interpolated string property.Add(String, String)Adds a named string property.Add(String)Adds an unnamed text property.Add((String Name, Boolean Value)<String, Boolean>)Adds a named boolean property.Add((String Name, String Value)<String, String>)Adds a named string property.Add<T>(T)Adds an unnamed scalar property.Add<T>((String Name, T Value)<String, T>)Adds a named scalar property.Add<T>((String Name, Nullable<T> Value)<String, Nullable<T>>)Adds a named nullable scalar property.AddRange(LogProperties)Appends all properties from another LogProperties instance.Dispose()Clears any buffered state owned by this instance.GetEnumerator()Returns an enumerator for this property set.Reset()Resets the current properties.