This documentation is archived and is not being maintained.
UriTemplateMatch::WildcardPathSegments Property
Visual Studio 2010
Gets a collection of path segments that are matched by a wildcard in the URI template.
Assembly: System.ServiceModel (in System.ServiceModel.dll)
The following code shows how to access the WildcardPathSegments property.
UriTemplate template = new UriTemplate("weather/{state}/*?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("WildcardPathSegments:"); foreach (string segment in results.WildcardPathSegments) { Console.WriteLine(" {0}", segment); } Console.WriteLine(); } // Code output: // WildcardPathSegments: // seattle
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: