UriTemplate.QueryValueVariableNames Свойство

Определение

Возвращает коллекцию имен переменных, используемых в строке запроса в шаблоне.

public:
 property System::Collections::ObjectModel::ReadOnlyCollection<System::String ^> ^ QueryValueVariableNames { System::Collections::ObjectModel::ReadOnlyCollection<System::String ^> ^ get(); };
public System.Collections.ObjectModel.ReadOnlyCollection<string> QueryValueVariableNames { get; }
member this.QueryValueVariableNames : System.Collections.ObjectModel.ReadOnlyCollection<string>
Public ReadOnly Property QueryValueVariableNames As ReadOnlyCollection(Of String)

Значение свойства

ReadOnlyCollection<String>

Коллекция имен переменных шаблона, находящихся в части строки шаблона, содержащей запрос.

Примеры

В следующем примере показано, как получить доступ к свойству QueryValueVariableNames.

UriTemplate template = new UriTemplate("weather/{state}/{city}?forecast={day}");
Uri prefix = new Uri("http://localhost");

Console.WriteLine("QueryValueVariableNames:");
foreach (string name in template.QueryValueVariableNames)
{
    Console.WriteLine("     {0}", name);
}
Dim template As UriTemplate = New UriTemplate("weather/{state}/{city}?forecast={day}")
Dim prefix As Uri = New Uri("http://localhost")

Console.WriteLine("QueryValueVariableNames:")
For Each name As String In template.QueryValueVariableNames
    Console.WriteLine("     {0}", name)
Next

Комментарии

В эту коллекцию не входят имена переменных, находящихся в части строки шаблона, содержащей путь.

Применяется к