Class DataStreamReport
Data stream report.
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: FM.LiveSwitch
Assembly: FM.LiveSwitch.dll
Syntax
public class DataStreamReport : Report
Constructors
DataStreamReport()
Initializes a new instance of the DataStreamReport class.
Declaration
public DataStreamReport()
Properties
BytesReceived
Gets or sets the number of bytes received on this data stream.
Declaration
public long? BytesReceived { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int64> |
BytesSent
Gets or sets the number of bytes sent on this data stream.
Declaration
public long? BytesSent { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int64> |
MessagesReceived
Gets or sets the number of messages received on this data stream.
Declaration
public long? MessagesReceived { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int64> |
MessagesSent
Gets or sets the number of messages sent on this data stream.
Declaration
public long? MessagesSent { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int64> |
Methods
DeserializeProperties(String, String)
Deserializes the properties.
Declaration
protected override void DeserializeProperties(string key, string valueJson)
Parameters
Type | Name | Description |
---|---|---|
System.String | key | The key. |
System.String | valueJson | The value in JSON format. |
Overrides
FromJson(String)
Deserializes Json to a DataStreamReport.
Declaration
public static DataStreamReport FromJson(string dataStreamReportJson)
Parameters
Type | Name | Description |
---|---|---|
System.String | dataStreamReportJson | The serialized Json. |
Returns
Type | Description |
---|---|
DataStreamReport | The deserialized DataChannelReport. |
SerializeProperties(Dictionary<String, String>)
Serializes the properties.
Declaration
protected override void SerializeProperties(Dictionary<string, string> jsonObject)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.Dictionary<System.String, System.String> | jsonObject | The JSON object. |
Overrides
ToJson()
Serializes this instance to Json.
Declaration
public string ToJson()
Returns
Type | Description |
---|---|
System.String |
ToJson(DataStreamReport)
Serializes an instance to Json.
Declaration
public static string ToJson(DataStreamReport dataStreamReport)
Parameters
Type | Name | Description |
---|---|---|
DataStreamReport | dataStreamReport | The instance to serialize. |
Returns
Type | Description |
---|---|
System.String | Serialized Json. |