WebExceptionStatus.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. //Copyright 2010 Microsoft Corporation
  2. //
  3. //Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.
  4. //You may obtain a copy of the License at
  5. //
  6. //http://www.apache.org/licenses/LICENSE-2.0
  7. //
  8. //Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an
  9. //"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. //See the License for the specific language governing permissions and limitations under the License.
  11. namespace System.Data.Services.Http
  12. {
  13. using System;
  14. internal enum WebExceptionStatus
  15. {
  16. Success,
  17. NameResolutionFailure,
  18. ConnectFailure,
  19. ReceiveFailure,
  20. SendFailure,
  21. PipelineFailure,
  22. RequestCanceled,
  23. ProtocolError,
  24. ConnectionClosed,
  25. TrustFailure,
  26. SecureChannelFailure,
  27. ServerProtocolViolation,
  28. KeepAliveFailure,
  29. Pending,
  30. Timeout,
  31. ProxyNameResolutionFailure,
  32. UnknownError,
  33. MessageLengthLimitExceeded,
  34. CacheEntryNotFound,
  35. RequestProhibitedByCachePolicy,
  36. RequestProhibitedByProxy
  37. }
  38. }