TimingEventNames.cs 1.1 KB

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