System.UriTemplate.IsEquivalentTo C# (CSharp) Method

IsEquivalentTo() public method

public IsEquivalentTo ( UriTemplate other ) : bool
other UriTemplate
return bool
		public bool IsEquivalentTo (UriTemplate other)
		{
			if (other == null)
				throw new ArgumentNullException ("other");
			return this.template == other.template;
		}