■ ApiInformation 클래스의 IsApiContractPresent 정적 메소드를 사용해 API 계약 존재 여부를 구하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 |
using Windows.Foundation.Metadata; bool present = ApiInformation.IsApiContractPresent("Windows.Foundation.UniversalApiContract", 7); |