UriTemplateMatch.WildcardPathSegments Propriedade
Definição
Obtém uma coleção de segmentos de linha que correspondem a um caractere curinga no modelo de URI.Gets a collection of path segments that are matched by a wildcard in the URI template.
public:
property System::Collections::ObjectModel::Collection<System::String ^> ^ WildcardPathSegments { System::Collections::ObjectModel::Collection<System::String ^> ^ get(); };
public System.Collections.ObjectModel.Collection<string> WildcardPathSegments { get; }
member this.WildcardPathSegments : System.Collections.ObjectModel.Collection<string>
Public ReadOnly Property WildcardPathSegments As Collection(Of String)
Valor da propriedade
Uma coleção de segmentos de caminho que são correspondidos por um curinga no modelo de URI.A collection of path segments that are matched by a wildcard in the URI template.
Exemplos
O código a seguir mostra como acessar a WildcardPathSegments propriedade.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