This documentation is archived and is not being maintained.
UriTemplateMatch Class
Visual Studio 2008
A class that represents the results of a match operation on a UriTemplate instance.
Assembly: System.ServiceModel.Web (in System.ServiceModel.Web.dll)
The UriTemplateMatch class represents the results of calling the Match(Uri, Uri) method. This class is not thread safe.
The following code shows how to use the UriTemplateMatch class.
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 'BaseUri Console.WriteLine("BaseUri: {0}", results.BaseUri) Console.WriteLine("BoundVariables:") For Each variableName As String In results.BoundVariables.Keys Console.WriteLine(" {0}: {1}", variableName, results.BoundVariables(variableName)) Next Console.WriteLine("QueryParameters:") For Each queryName As String In results.QueryParameters.Keys Console.WriteLine(" {0} : {1}", queryName, results.QueryParameters(queryName)) Next Console.WriteLine() Console.WriteLine("RelativePathSegments:") For Each segment As String In results.RelativePathSegments Console.WriteLine(" {0}", segment) Next Console.WriteLine() Console.WriteLine("RequestUri:") Console.WriteLine(results.RequestUri) Console.WriteLine("Template:") Console.WriteLine(results.Template) Console.WriteLine("WildcardPathSegments:") For Each segment As String In results.WildcardPathSegments Console.WriteLine(" {0}", segment) Next Console.WriteLine() End If
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: