UriTemplateMatch.BoundVariables 屬性

定義

針對範本比對取得 BoundVariables 集合。

public System.Collections.Specialized.NameValueCollection BoundVariables { get; }

屬性值

NameValueCollection 執行個體,包含在比對時擷取自 URI 的範本變數值。

範例

下列程式碼將示範如何存取 BoundVariables 屬性。

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)
{
    // BaseUri
    Console.WriteLine("BaseUri: {0}", results.BaseUri);

    Console.WriteLine("BoundVariables:");
    foreach (string variableName in results.BoundVariables.Keys)
    {
        Console.WriteLine("    {0}: {1}", variableName, results.BoundVariables[variableName]);
    }
}
// Code output:
// BaseUri: http://localhost/
// BoundVariables:
//  state: wa
//  city: seattleConsole.WriteLine("BaseUri: {0}", results.BaseUri);

備註

每個範本變數名稱都會出現為此集合中的名稱,而且繫結至該變數的值會儲存在對應的名稱下。 此集合中的值都已經將所有逸出序列轉譯為實際字元。 在比對變數名稱時,這個名稱值集合是使用不區分大小寫的搜尋。

適用於

產品 版本
.NET Framework 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1