System::Net::Http::Headers::AuthenticationHeaderValue 类

AuthenticationHeaderValue class

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

class AuthenticationHeaderValue : public System::ICloneable

方法

方法描述
AuthenticationHeaderValue(String)构造函数。
AuthenticationHeaderValue(String, String)构造函数。
Clone() overrideRTTI 信息。
Equals(System::SharedPtr<Object>) override使用 C# Object.Equals 语义比较对象。
get_Parameter()获取包含身份验证信息的凭据。
get_Scheme()RTTI 信息。
static GetAuthenticationLength(String, int32_t, System::SharedPtr<Object>&)解析指定的字符串并返回字符串表示形式的最后索引。
GetHashCode() const override相当于 C# Object.GetHashCode() 方法。启用自定义对象的哈希计算。
static Parse(String)将传入的字符串转换为 AuthenticationHeaderValue 类的实例。
ToString() const override相当于 C# 的 Object.ToString() 方法。用于将自定义对象转换为字符串。
static TryParse(String, System::SharedPtr<AuthenticationHeaderValue>&)尝试将传入的字符串转换为 AuthenticationHeaderValue 类的实例。

另见