System.Net.Http 4.0.0.0 System.Object System.ICloneable The class provides support for the Range header as defined in RFC 2616 by the IETF. Since all HTTP entities are represented in HTTP messages as sequences of bytes, the concept of a byte range is meaningful for any HTTP entity. However, not all clients and servers need to support byte-range operations. The Range header on a request allows a client to request that it only wants to receive some part of the specified range of bytes in an HTTP entity. Servers are not required to support Range header requests. An example of a Range header in an HTTP protocol request that requests the first 100 bytes would be would be the following: Range: bytes=0-99\r\n\r\n A HTTP server indicates support for Range headers with the Accept-Ranges header. An example of the Accept-Ranges header from a server that supports byte-ranges would be as follows: Accept-Ranges: bytes\r\n\r\n If an Accept-Ranges header is not received in the header of the response from the server, then the server does not support Range headers. An example of the Accept-Ranges header from a server that does not support ranges, but recognizes the Accept-Ranges header, would be as follows: Accept-Ranges: none\r\n\r\n Represents a Range header value. Constructor 4.0.0.0 To be added. Initializes a new instance of the class. Constructor 4.0.0.0 This constructor initializes a new instance of the class with a Range header containing a specified byte range. An example of a Range header with a byte range in an HTTP protocol request that requests the first 100 bytes would be would be the following: Range: bytes=0-99\r\n\r\n For this example, the parameter would be specified as 0 and the parameter would be specified as 99. Initializes a new instance of the class with a byte range. The position at which to start sending data. The position at which to stop sending data. Method 4.0.0.0 System.Boolean To be added. Determines whether the specified is equal to the current object. Returns . true if the specified is equal to the current object; otherwise, false. The object to compare with the current object. Method 4.0.0.0 System.Int32 A hash code is a numeric value that is used to identify an object during equality testing. It can also serve as an index for an object in a collection. The method is suitable for use in hashing algorithms and data structures such as a hash table. Serves as a hash function for an object. Returns . A hash code for the current object. Method 4.0.0.0 System.Net.Http.Headers.RangeHeaderValue To be added. Converts a string to an instance. Returns . An instance. A string that represents range header value information. Property 4.0.0.0 System.Collections.Generic.ICollection<System.Net.Http.Headers.RangeItemHeaderValue> To be added. To be added. Gets the ranges specified from the object. Method 4.0.0.0 System.Object To be added. Creates a new object that is a copy of the current instance. Returns . A copy of the current instance. Method 4.0.0.0 System.String To be added. Returns a string that represents the current object. Returns . A string that represents the current object. Method 4.0.0.0 System.Boolean To be added. To be added. To be added. To be added. To be added. Property 4.0.0.0 System.String To be added. To be added. Gets the unit from the object.