/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.PerformanceMonitor/SpeedUnit.cs
20 строк
700 B
Jake Scott
[CmdPal][Performance Monitor] Add disk activity monitoring (#48844)
17 июл 2026, 20:56
Не верифицирован
17 июл 2026, 20:56
c2d505d
Код
Авторство
О чём код?
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. namespace Microsoft.CmdPal.Ext.PerformanceMonitor; /// <summary> /// Controls the unit used to display network or disk transmission speed. /// </summary> internal enum SpeedUnit { /// <summary>Bits per second (Kbps, Mbps, Gbps) — SI decimal prefixes.</summary> BitsPerSecond, /// <summary>Bytes per second (KB/s, MB/s, GB/s) — SI decimal prefixes.</summary> BytesPerSecond, /// <summary>Bytes per second (KiB/s, MiB/s, GiB/s) — IEC binary prefixes.</summary> BinaryBytesPerSecond, }