Click or drag to resize

HttpStatus Structure

IT Hit WebDAV Classes Reference
Structure that describes HTTP response's status.

Namespace:  ITHit.WebDAV.Client
Assembly:  ITHit.WebDAV.Client (in ITHit.WebDAV.Client.dll) Version: 6.0.4052-Beta
Syntax
[SerializableAttribute]
public struct HttpStatus

The HttpStatus type exposes the following members.

Constructors
  NameDescription
Public methodHttpStatus
Initializes a new instance of the HttpStatus structure with code and description specified.
Top
Properties
  NameDescription
Public propertyCode
Gets the code of the status.
Public propertyDescription
Gets the description of the status.
Top
Methods
  NameDescription
Public methodEquals(Object)
Indicates whether this instance and a specified object are equal.
(Overrides ValueTypeEquals(Object).)
Public methodEquals(HttpStatus)
Indicates whether the current HttpStatus structure is equal to another HttpStatus structure.
Public methodGetHashCode
Returns the hash code for this instance.
(Overrides ValueTypeGetHashCode.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodStatic memberParse
Parses HttpStatus structure from string containing status information.
Public methodToString
Returns the fully qualified type name of this instance.
(Inherited from ValueType.)
Top
Operators
  NameDescription
Public operatorStatic memberEquality
The equality operator (==).
Public operatorStatic memberInequality
The inequality operator (!=).
Top
Fields
  NameDescription
Public fieldStatic memberBadGateway
The server, while acting as a gateway or proxy, received an invalid response from the upstream server it accessed in attempting to fulfill the request.
Public fieldStatic memberBadRequest
The request could not be understood by the server.
Public fieldStatic memberConflict
The request could not be completed due to a conflict with the current state of the resource.
Public fieldStatic memberCreated
The request has been fulfilled and resulted in a new resource being created.
Public fieldStatic memberDependencyFailed
The method could not be performed on the resource because the requested action depended on another action and that action failed.
Public fieldStatic memberForbidden
The server understood the request, but is refusing to fulfill it.
Public fieldStatic memberInsufficientStorage
The method could not be performed on the resource because the server is unable to store the representation needed to successfully complete the request.
Public fieldStatic memberLocked
The source or destination resource of a method is locked.
Public fieldStatic memberMethodNotAllowed
The method specified in the Request-Line is not allowed for the resource identified by the Request-URI.
Public fieldStatic memberMultiStatus
This status code provides status for multiple independent operations.
Public fieldStatic memberNoContent
The server has fulfilled the request but does not need to return an entity-body, and might want to return updated metainformation.
Public fieldStatic memberNone
No status defined.
Public fieldStatic memberNotFound
The server has not found anything matching the Request-URI.
Public fieldStatic memberNotImplemented
The server does not support the functionality required to fulfill the request.
Public fieldStatic memberOK
The request has succeeded.
Public fieldStatic memberPartialContent
The server has fulfilled the partial GET request for the resource.
Public fieldStatic memberPreconditionFailed
The precondition given in one or more of the request-header fields evaluated to false when it was tested on the server.
Public fieldStatic memberRedirect302
302 Found redirect.
Public fieldStatic memberUnauthorized
The request requires user authentication.
Top
See Also