Enum Units
This enum can be used to indicate the units that a metric is reported in, so that they can be displayed in the Runtime Network Stats Monitor with the appropriate units.
Namespace: Unity.Multiplayer.Tools.NetStats
Syntax
public enum Units
Fields
| Name | Description | Value |
|---|---|---|
| None | A dimensionless metric without units (e.g. connection count) |
0 |
| Bytes | Represent bytes. |
1 |
| BytesPerSecond | Represent bytes per second. |
2 |
| Seconds | Represent a second. |
3 |
| Hertz | Represent a hertz (1/second). |
4 |