UriTemplateMatch.Template Propriedade

Definição

Obtém ou define a instância de UriTemplate associada a essa instância de UriTemplateMatch.

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

Valor da propriedade

UriTemplate

Uma instância de UriTemplate.

Exemplos

O código a seguir mostra como acessar a Template propriedade.

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

Comentários

Essa propriedade contém o UriTemplate URI do candidato correspondente.

Aplica-se a