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;
		}