CustomHeaderNames.cs 363 B

1234567891011
  1. namespace MediaBrowser.Common.Net
  2. {
  3. public static class CustomHeaderNames
  4. {
  5. // Other Headers
  6. public const string XForwardedFor = "X-Forwarded-For";
  7. public const string XForwardedPort = "X-Forwarded-Port";
  8. public const string XForwardedProto = "X-Forwarded-Proto";
  9. public const string XRealIP = "X-Real-IP";
  10. }
  11. }