System::Net::Http::Headers::WarningHeaderValue 类

WarningHeaderValue class

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

class WarningHeaderValue : public System::ICloneable

方法

方法描述
Equals(System::SharedPtr<Object>) override使用 C# Object.Equals 语义比较对象。
get_Agent()返回警告附带的主机。
get_Code()RTTI 信息。
get_Date()返回警告的日期时间。
get_Text()返回警告文本。
GetHashCode() const override相当于 C# Object.GetHashCode() 方法。启用自定义对象的哈希计算。
static GetWarningLength(String, int32_t, System::SharedPtr<Object>&)将传入的字符串从指定索引转换为 WarningHeaderValue 类的实例。
static Parse(String)将传入的字符串转换为 WarningHeaderValue 类的实例。
ToString() const override相当于 C# 的 Object.ToString() 方法。用于将自定义对象转换为字符串。
static TryParse(String, System::SharedPtr<WarningHeaderValue>&)尝试将传入的字符串转换为 WarningHeaderValue 类的实例。
WarningHeaderValue(int32_t, String, String)构造一个新实例。
WarningHeaderValue(int32_t, String, String, DateTimeOffset)构造一个新实例。

另见