Share via


UriTemplateMatch.Template Proprietà

Definizione

Ottiene o imposta l'istanza di UriTemplate associata a questa istanza di 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

Valore della proprietà

UriTemplate

Istanza di UriTemplate.

Esempio

Nel codice seguente viene illustrato come accedere alla proprietà 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

Commenti

Questa proprietà contiene il modello UriTemplate a cui l'URI candidato corrisponde.

Si applica a