Show / Hide Table of Contents

Class Range

Inheritance
object
Range
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
Namespace: Oci.Common.Model
Assembly: OCI.DotNetSDK.Common.dll
Syntax
public class Range

Properties

ContentLength

Declaration
public long? ContentLength { get; set; }
Property Value
Type Description
long?

EndByte

Declaration
public long? EndByte { get; set; }
Property Value
Type Description
long?

StartByte

Declaration
public long? StartByte { get; set; }
Property Value
Type Description
long?

Methods

ParseRange(string)

Parse the "content-range" header per https://tools.ietf.org/html/rfc7233#section-4.2. sample content-range header value: bytes 1-5/6

Declaration
public static Range ParseRange(string rangeStr)
Parameters
Type Name Description
string rangeStr
Returns
Type Description
Range

ToString()

Declaration
public override string ToString()
Returns
Type Description
string
Overrides
object.ToString()
In this article
Back to top