PackUriHelper.ComparePartUri(Uri, Uri) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
2 つのパッケージ パーツの 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
2 番目の PackagePart の URI。
戻り値
firstPartUri
と secondPartUri
の間のリレーションシップを示す値。
[値] | 説明 |
---|---|
0 より小さい。 |
firstPartUri は secondPartUri より小さい値です。
|
0 |
firstPartUri は secondPartUri に相当します。
|
0 より大きい。 |
firstPartUri が secondPartUri より大きくなっています。
|
例外
firstPartUri
または secondPartUri
は有効なパーツ URI 構文ではありません。
注釈
と のsecondPartUri
両方firstPartUri
が のComparePartUri場合はnull
、0 を返します。 URI を比較する PackagePart 場合、null URI は常に null 以外の URI よりも小さくなります。 と secondPartUri
がfirstPartUri
両方とも相対 PackagePart URI である場合は、ComparePartUri比較を実行します。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET