System.UriTemplate.Match 方法

方法描述

尝试将 URI 与 UriTemplate 匹配。

语法定义(C# System.UriTemplate.Match 方法 的用法)

public UriTemplateMatch Match(
	Uri baseAddress,
	Uri candidate
)

参数/返回值

参数值/返回值 参数类型/返回类型 参数描述/返回描述
baseAddress System-Uri 基址。
candidate System-Uri 要与模板匹配的 Uri。
返回值 System.UriTemplateMatch 一个实例。

提示和注释

如果匹配成功,则使用 URI 段、变量值、查询字符串值和候选 URI 的通配符段来填充 UriTemplateMatch。如果匹配失败,则返回 null。

System.UriTemplate.Match 方法例子

下面的示例演示如何调用 Match(Uri, Uri) 方法。

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

Uri fullUri = new Uri("http://localhost/weather/Washington/Redmond?forecast=today");
UriTemplateMatch results = template.Match(prefix, fullUri);

Console.WriteLine("Matching {0} to {1}", template.ToString(), fullUri.ToString());

if (results != null)
{
    foreach (string variableName in results.BoundVariables.Keys)
    {
        Console.WriteLine("   {0}: {1}", variableName, results.BoundVariables[variableName]);
    }
}

异常

异常 异常描述

命名空间

namespace: System

程序集: System.ServiceModel(在 System.ServiceModel.dll 中)

版本信息

.NET Framework 受以下版本支持:4、3.5 .NET Framework Client Profile 受以下版本支持:4、3.5 SP1

适用平台

Windows 7, Windows Vista SP1 或更高版本, Windows XP SP3, Windows Server 2008(不支持服务器核心), Windows Server 2008 R2(支持 SP1 或更高版本的服务器核心), Windows Server 2003 SP2 .NET Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。