System.UriTemplate.IsEquivalentTo 方法

方法描述

指示 UriTemplate 与其他模板的结构是否等效。

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

public bool IsEquivalentTo(
	UriTemplate other
)

参数/返回值

参数值/返回值 参数类型/返回类型 参数描述/返回描述
other System-UriTemplate 要比较的 UriTemplate。
返回值 System.Boolean 如果 UriTemplate 与其他模板的结构等效,则为 true;否则为 false。

提示和注释

如果两个 UriTemplate 实例的文本字符串相同,并且变量出现在相同的段中,则这两个实例是等效的。例如,“weather/{state}/{city}”与“weather/{country}/{village}”结构等效。

System.UriTemplate.IsEquivalentTo 方法例子

下面的示例演示如何调用 IsEquivalentTo(UriTemplate)。

UriTemplate template = new UriTemplate("weather/{state}/{city}?forecast={day}");
UriTemplate template2 = new UriTemplate("weather/{country}/{village}?forecast={type}");

bool equiv = template.IsEquivalentTo(template2);

异常

异常 异常描述

命名空间

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 系统要求。