System::Net::Http::Headers::RangeConditionHeaderValue 类

RangeConditionHeaderValue class

表示 ‘If-Range’ 头的值。此类的对象只能使用 System::MakeObject() 函数分配。切勿在栈上或使用 operator new 创建此类型的实例,因为这会导致运行时错误和/或断言故障。始终将此类包装到 System::SmartPtr 指针中,并使用该指针将其作为参数传递给函数。

class RangeConditionHeaderValue : public System::ICloneable

方法

方法描述
Equals(System::SharedPtr<Object>) override使用 C# Object.Equals 语义比较对象。
get_Date()RTTI 信息。
get_EntityTag()返回一个 ‘ETag’ 头的值。
GetHashCode() const override相当于 C# Object.GetHashCode() 方法。启用自定义对象的哈希计算。
static GetRangeConditionLength(String, int32_t, System::SharedPtr<Object>&)将传入的字符串从指定索引转换为 RangeConditionHeaderValue 类的实例。
static Parse(String)将传入的字符串转换为 RangeConditionHeaderValue 类的实例。
RangeConditionHeaderValue(DateTimeOffset)构造一个新实例。
RangeConditionHeaderValue(System::SharedPtr<EntityTagHeaderValue>)构造一个新实例。
RangeConditionHeaderValue(String)构造一个新实例。
ToString() const override相当于 C# 的 Object.ToString() 方法。用于将自定义对象转换为字符串。
static TryParse(String, System::SharedPtr<RangeConditionHeaderValue>&)尝试将传入的字符串转换为 RangeConditionHeaderValue 类的实例。

另见