Class ClientStateRecord
Represents a single Client state transition record with timing information.
Inheritance
System.Object
ClientStateRecord
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: FM.LiveSwitch
Assembly: FM.LiveSwitch.dll
Syntax
public class ClientStateRecord
Properties
ClientStateString
Gets the string representation of the client state.
Declaration
public string ClientStateString { get; }
Property Value
Type | Description |
---|---|
System.String |
DateTime
Gets or sets the UTC datetime when the state transition occurred.
Declaration
public DateTime DateTime { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime |
State
Gets or sets the Client state.
Declaration
public ClientState State { get; set; }
Property Value
Type | Description |
---|---|
ClientState |
TimeStamp
Gets or sets the millisecond timestamp when the state transition occurred.
Declaration
public long TimeStamp { get; set; }
Property Value
Type | Description |
---|---|
System.Int64 |