Share via


UriTemplateMatch.Template 속성

정의

UriTemplateMatch 인스턴스와 연결된 UriTemplate 인스턴스를 가져오거나 설정합니다.

public:
 property UriTemplate ^ Template { UriTemplate ^ get(); void set(UriTemplate ^ value); };
public UriTemplate Template { get; set; }
member this.Template : UriTemplate with get, set
Public Property Template As UriTemplate

속성 값

UriTemplate

UriTemplate 인스턴스입니다.

예제

다음 코드에서는 Template 속성에 액세스하는 방법을 보여 줍니다.

UriTemplate template = new UriTemplate("weather/{state}/{city}?forecast=today");
Uri baseAddress = new Uri("http://localhost");
Uri fullUri = new Uri("http://localhost/weather/WA/Seattle?forecast=today");

Console.WriteLine("Matching {0} to {1}", template.ToString(), fullUri.ToString());

// Match a URI to a template
UriTemplateMatch results = template.Match(baseAddress, fullUri);
if (results != null)
{
    Console.WriteLine("Template:");
    Console.WriteLine(results.Template);
}
// Code output:
// Template:
// weather/{state}/{city}?forecast=today
Dim template As New UriTemplate("weather/ state}/ city}?forecast=today")
Dim baseAddress As New Uri("http://localhost")
Dim fullUri As New Uri("http://localhost/weather/WA/Seattle?forecast=today")

Console.WriteLine("Matching  0} to  1}", template.ToString(), fullUri.ToString())

'Match a URI to a template
Dim results As UriTemplateMatch = template.Match(baseAddress, fullUri)
If (results IsNot Nothing) Then
    Console.WriteLine("Template:")
    Console.WriteLine(results.Template)
End If
'Code output:
'Template:
'weather/ state}/ city}?forecast=today

설명

이 속성은 후보 URI와 일치하는 UriTemplate을 포함합니다.

적용 대상