OpenTelemetry.Logs.LogRecordScope
Stores details about a scope attached to a log message.
namespace OpenTelemetry.Logs
{
public readonly struct LogRecordScope
{
public struct Enumerator : IEnumerator<KeyValuePair<string, object>>, IEnumerator, IDisposable
{
public KeyValuePair<string, object> Current { get; }
public Enumerator(object scope);
public bool MoveNext();
public void Dispose();
public void Reset();
}
public object Scope { get; }
public Enumerator GetEnumerator();
}
}