TimingEventNames.cs 1016 B

123456789101112131415161718192021
  1. namespace BestHTTP.Timings
  2. {
  3. public static class TimingEventNames
  4. {
  5. public const string Queued = "Queued";
  6. public const string Queued_For_Redirection = "Queued for redirection";
  7. public const string DNS_Lookup = "DNS Lookup";
  8. public const string TCP_Connection = "TCP Connection";
  9. public const string Proxy_Negotiation = "Proxy Negotiation";
  10. public const string TLS_Negotiation = "TLS Negotiation";
  11. public const string Request_Sent = "Request Sent";
  12. public const string Waiting_TTFB = "Waiting (TTFB)";
  13. public const string Headers = "Headers";
  14. public const string Loading_From_Cache = "Loading from Cache";
  15. public const string Writing_To_Cache = "Writing to Cache";
  16. public const string Response_Received = "Response Received";
  17. public const string Queued_For_Disptach = "Queued for Dispatch";
  18. public const string Finished = "Finished in";
  19. public const string Callback = "Callback";
  20. }
  21. }