EntityTagHeaderValue.TryParse 方法

定義

多載

TryParse(StringSegment, EntityTagHeaderValue)

嘗試將指定的 input 剖析為 EntityTagHeaderValue

TryParse(String, EntityTagHeaderValue)

TryParse(StringSegment, EntityTagHeaderValue)

嘗試將指定的 input 剖析為 EntityTagHeaderValue

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

參數

input
StringSegment

要剖析的值。

parsedValue
EntityTagHeaderValue

剖析的值。

傳回

true 如果輸入是有效的 EntityTagHeaderValue ,則為 ,否則 false 為 。

適用於

TryParse(String, EntityTagHeaderValue)

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

參數

input
String
parsedValue
EntityTagHeaderValue

傳回

適用於