WebExceptionStatus.cs 743 B

123456789101112131415161718192021222324252627282930313233343536
  1. // System.Net.WebExceptionStatus.cs
  2. //
  3. // Author:
  4. // Andreas Nahr ([email protected])
  5. // originally autogenerated by Sergey Chaban ([email protected])
  6. //
  7. // (C) 2001 Ximian, Inc. http://www.ximian.com
  8. namespace System.Net
  9. {
  10. public enum WebExceptionStatus
  11. {
  12. Success = 0,
  13. NameResolutionFailure = 1,
  14. ConnectFailure = 2,
  15. ReceiveFailure = 3,
  16. SendFailure = 4,
  17. PipelineFailure = 5,
  18. RequestCanceled = 6,
  19. ProtocolError = 7,
  20. ConnectionClosed = 8,
  21. TrustFailure = 9,
  22. SecureChannelFailure = 10,
  23. ServerProtocolViolation = 11,
  24. KeepAliveFailure = 12,
  25. Pending = 13,
  26. Timeout = 14,
  27. ProxyNameResolutionFailure = 15,
  28. #if NET_1_1
  29. UnknownError = 16,
  30. MessageLengthLimitExceeded = 17,
  31. #endif
  32. }
  33. }