LinkParserEndpointNameAddressExtensions.ParsePathByEndpointName 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
일치하는 endpointName
로 지정된 경로 패턴을 사용하여 제공된 path
Endpoint 를 구문 분석하려고 시도합니다.
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Routing::RouteValueDictionary ^ ParsePathByEndpointName(Microsoft::AspNetCore::Routing::LinkParser ^ parser, System::String ^ endpointName, Microsoft::AspNetCore::Http::PathString path);
public static Microsoft.AspNetCore.Routing.RouteValueDictionary ParsePathByEndpointName (this Microsoft.AspNetCore.Routing.LinkParser parser, string endpointName, Microsoft.AspNetCore.Http.PathString path);
public static Microsoft.AspNetCore.Routing.RouteValueDictionary? ParsePathByEndpointName (this Microsoft.AspNetCore.Routing.LinkParser parser, string endpointName, Microsoft.AspNetCore.Http.PathString path);
static member ParsePathByEndpointName : Microsoft.AspNetCore.Routing.LinkParser * string * Microsoft.AspNetCore.Http.PathString -> Microsoft.AspNetCore.Routing.RouteValueDictionary
<Extension()>
Public Function ParsePathByEndpointName (parser As LinkParser, endpointName As String, path As PathString) As RouteValueDictionary
매개 변수
- parser
- LinkParser
- endpointName
- String
엔드포인트 이름입니다. 엔드포인트를 resolve 데 사용됩니다.
- path
- PathString
구문 분석할 URI 경로입니다.
반환
RouteValueDictionary 구문 분석이 성공하면 구문 분석된 값이 있는 이며, 그렇지 않으면 null
입니다.
설명
ParsePathByEndpointName(LinkParser, String, PathString)는 일치하는 인스턴스 endpointName
를 먼저 resolve Endpoint 다음 각 엔드포인트와 연결된 경로 패턴을 사용하여 URL 경로를 구문 분석합니다.
엔드포인트가 없거나 제공된 URI 경로와 일치하는 경로 패턴이 없는 경우 구문 분석 작업이 실패하고 반환 null
됩니다.