SessionData Class
Definition
A structure that contains session specific information.
public sealed class SessionDataInheritance object
Constructors
SessionData(Guid)
A structure that contains session specific information.
public SessionData(Guid sessionId)Parameters
sessionId Guid
A unique Guid associated with the current session.
Properties
SessionId
Gets or sets a unique Guid associated with the current session.
public Guid SessionId { get; set; }Metrics
Gets a dictionary of all active metric aggregators. Each Metric can also have a series of unique instances for the same metric name.
public ConcurrentDictionary<string, Metric> Metrics { get; }OverriddenSessionData
Gets an enumeration of SessionData variable names that have been manually overridden after initialization.
public IReadOnlyCollection<string> OverriddenSessionData { get; }