UriTemplate.IsEquivalentTo(UriTemplate) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
UriTemplate이 다른 템플릿과 구조적으로 같은지 여부를 나타냅니다.
public:
bool IsEquivalentTo(UriTemplate ^ other);
public bool IsEquivalentTo (UriTemplate other);
member this.IsEquivalentTo : UriTemplate -> bool
Public Function IsEquivalentTo (other As UriTemplate) As Boolean
매개 변수
- other
- UriTemplate
비교할 UriTemplate입니다.
반환
UriTemplate이 다른 템플릿과 구조적으로 같으면 true
이고, 그렇지 않으면 false
입니다.
예제
다음 예제에서는 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);
Dim template As UriTemplate = New UriTemplate("weather/{state}/{city}?forecast={day}")
Dim template2 As UriTemplate = New UriTemplate("weather/{country}/{village}?forecast={type}")
Dim equiv As Boolean = template.IsEquivalentTo(template2)
설명
리터럴 문자열이 같고 변수가 동일한 세그먼트에 나타난다면 두 UriTemplate 인스턴스는 동일합니다. 예를 들어 "weather/{state}/{city}"는 "weather/{country}/{village}"와 같습니다.