System.UriTemplate.IsEquivalentTo C# (CSharp) Метод

IsEquivalentTo() публичный Метод

public IsEquivalentTo ( UriTemplate other ) : bool
other UriTemplate
Результат bool
		public bool IsEquivalentTo (UriTemplate other)
		{
			if (other == null)
				throw new ArgumentNullException ("other");
			return this.template == other.template;
		}