AuthenticationHeaderValue.TryParse(String, AuthenticationHeaderValue) 方法

定义

确定一个字符串是否为有效的 AuthenticationHeaderValue 信息。

public:
 static bool TryParse(System::String ^ input, [Runtime::InteropServices::Out] System::Net::Http::Headers::AuthenticationHeaderValue ^ % parsedValue);
public static bool TryParse (string input, out System.Net.Http.Headers.AuthenticationHeaderValue parsedValue);
public static bool TryParse (string? input, out System.Net.Http.Headers.AuthenticationHeaderValue? parsedValue);
static member TryParse : string * AuthenticationHeaderValue -> bool
Public Shared Function TryParse (input As String, ByRef parsedValue As AuthenticationHeaderValue) As Boolean

参数

input
String

要验证的字符串。

parsedValue
AuthenticationHeaderValue

字符串的 AuthenticationHeaderValue 版本。

返回

如果 input 为有效 AuthenticationHeaderValue 信息,则为 true;否则为 false

适用于