PackUriHelper.ComparePartUri(Uri, Uri) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
두 패키지 파트 URI가 같은지 여부를 나타내는 값을 반환합니다.
public:
static int ComparePartUri(Uri ^ firstPartUri, Uri ^ secondPartUri);
public static int ComparePartUri (Uri? firstPartUri, Uri? secondPartUri);
public static int ComparePartUri (Uri firstPartUri, Uri secondPartUri);
static member ComparePartUri : Uri * Uri -> int
Public Shared Function ComparePartUri (firstPartUri As Uri, secondPartUri As Uri) As Integer
매개 변수
- firstPartUri
- Uri
첫 번째 PackagePart의 URI입니다.
- secondPartUri
- Uri
두 번째 PackagePart의 URI입니다.
반환
firstPartUri
와 secondPartUri
간의 관계를 나타내는 값입니다.
값 | 의미 |
---|---|
0보다 작음 |
firstPartUri 가 secondPartUri 보다 작은 경우
|
0 |
firstPartUri 은 secondPartUri 와 동등합니다.
|
0보다 큼 |
firstPartUri 가 secondPartUri 보다 큰 경우
|
예외
firstPartUri
또는 secondPartUri
는 유효한 파트 URI 구문이 아닙니다.
설명
및 secondPartUri
가 모두 firstPartUri
이 null
ComparePartUri 면 0을 반환합니다. URI를 PackagePart 비교할 때 null URI는 항상 null이 아닌 URI보다 작습니다. 및 secondPartUri
가 firstPartUri
둘 다 상대 PackagePart URI ComparePartUri 인 경우 는 비교를 수행합니다.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET