123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- using System;
- namespace BestHTTP.Statistics
- {
- [Flags]
- public enum StatisticsQueryFlags : byte
- {
-
-
-
- Connections = 0x01,
-
-
-
- Cache = 0x02,
-
-
-
- Cookies = 0x04,
-
-
-
- All = 0xFF,
- }
- public struct GeneralStatistics
- {
- public StatisticsQueryFlags QueryFlags;
- #region Connection Statistics
-
-
-
- public int Connections;
-
-
-
- public int ActiveConnections;
-
-
-
- public int FreeConnections;
-
-
-
- public int RecycledConnections;
-
-
-
- public int RequestsInQueue;
- #endregion
- #region Cache Statistics
-
-
-
- public int CacheEntityCount;
-
-
-
- public ulong CacheSize;
- #endregion
- #region Cookie Statistics
-
-
-
- public int CookieCount;
-
-
-
- public uint CookieJarSize;
- #endregion
- }
- }
|