System::Net::Http::Headers::RangeItemHeaderValue class

RangeItemHeaderValue class

Represents a range of bytes in a value of the ‘Range’ header. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument.

class RangeItemHeaderValue : public System::ICloneable

Methods

MethodDescription
Equals(System::SharedPtr<Object>) overrideCompares objects using C# Object.Equals semantics.
get_From()RTTI information.
get_To()Returns a position at which data sending must stop.
GetHashCode() const overrideAnalog of C# Object.GetHashCode() method. Enables hashing of custom objects.
static GetRangeItemLength(String, int32_t, System::SharedPtr<RangeItemHeaderValue>&)Converts a passed string from the specified index to an instance of the RangeItemHeaderValue class.
static GetRangeItemListLength(String, int32_t, System::SharedPtr<Collections::Generic::ICollection<System::SharedPtr<RangeItemHeaderValue>>>)Converts a passed string from the specified position to the collection of the RangeItemHeaderValue-class instances.
RangeItemHeaderValue(Nullable<int64_t>, Nullable<int64_t>)Constructs a new instance.
ToString() const overrideAnalog of C# Object.ToString() method. Enables converting custom objects to string.

See Also