Class CreationEventDetails
Session event details specific to creation.
public sealed record CreationEventDetails : IEquatable<CreationEventDetails>
- Inheritance
-
CreationEventDetails
- Implements
- Inherited Members
Constructors
CreationEventDetails(DeviceBoundSessionFetchResult)
Session event details specific to creation.
public CreationEventDetails(DeviceBoundSessionFetchResult FetchResult)
Parameters
FetchResultDeviceBoundSessionFetchResultThe result of the fetch attempt.
Properties
FailedRequest
Details about a failed device bound session network request if there was one.
public DeviceBoundSessionFailedRequest? FailedRequest { get; init; }
Property Value
FetchResult
The result of the fetch attempt.
public DeviceBoundSessionFetchResult FetchResult { get; init; }
Property Value
NewSession
The session if there was a newly created session. This is populated for all successful creation events.
public DeviceBoundSession? NewSession { get; init; }