CacheControlHeaderValue.TryParse 方法

定义

重载

TryParse(StringSegment, CacheControlHeaderValue)

尝试将指定的 input 分析为 CacheControlHeaderValue

TryParse(String, CacheControlHeaderValue)

TryParse(StringSegment, CacheControlHeaderValue)

尝试将指定的 input 分析为 CacheControlHeaderValue

public:
 static bool TryParse(Microsoft::Extensions::Primitives::StringSegment input, [Runtime::InteropServices::Out] Microsoft::Net::Http::Headers::CacheControlHeaderValue ^ % parsedValue);
public static bool TryParse (Microsoft.Extensions.Primitives.StringSegment input, out Microsoft.Net.Http.Headers.CacheControlHeaderValue parsedValue);
public static bool TryParse (Microsoft.Extensions.Primitives.StringSegment input, out Microsoft.Net.Http.Headers.CacheControlHeaderValue? parsedValue);
static member TryParse : Microsoft.Extensions.Primitives.StringSegment * CacheControlHeaderValue -> bool
Public Shared Function TryParse (input As StringSegment, ByRef parsedValue As CacheControlHeaderValue) As Boolean

参数

input
StringSegment

要分析的值。

parsedValue
CacheControlHeaderValue

已分析的值。

返回

true 如果输入是有效的 CacheControlHeaderValue,则为 ,否则为 false

适用于

TryParse(String, CacheControlHeaderValue)

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

参数

input
String

返回

适用于