다음을 통해 공유


HeaderUtilities.TryParseSeconds 메서드

정의

지정된 헤더 값 집합 중에서 대상 헤더 값을 찾아 로 TimeSpan구문 분석해 보세요.

public:
 static bool TryParseSeconds(Microsoft::Extensions::Primitives::StringValues headerValues, System::String ^ targetValue, [Runtime::InteropServices::Out] Nullable<TimeSpan> % value);
public static bool TryParseSeconds (Microsoft.Extensions.Primitives.StringValues headerValues, string targetValue, out TimeSpan? value);
static member TryParseSeconds : Microsoft.Extensions.Primitives.StringValues * string * Nullable -> bool
Public Shared Function TryParseSeconds (headerValues As StringValues, targetValue As String, ByRef value As Nullable(Of TimeSpan)) As Boolean

매개 변수

headerValues
StringValues

StringValues 검색할 헤더 값 집합을 포함하는 입니다.

targetValue
String

찾을 대상 헤더 값입니다.

value
Nullable<TimeSpan>

이 메서드가 반환될 때 구문 분석이 성공하면 구문 분석된 TimeSpan를 포함하거나 구문 분석이 실패한 경우 null을 포함합니다. 를 targetValue 찾을 수 없거나 로 TimeSpan구문 분석할 수 없는 경우 변환이 실패합니다. 이 매개 변수는 초기화되지 않은 상태로 전달됩니다. 원래 결과에 제공된 모든 값을 덮어쓰게 됩니다.

반환

true targetValue 가 발견되고 성공적으로 구문 분석되면 이고, false그렇지 않으면 입니다.

적용 대상