Returns a value that indicates whether two package part URIs are equivalent.
Namespace:
System.IO.Packaging
Assembly:
WindowsBase (in WindowsBase.dll)
Visual Basic (Declaration)
Public Shared Function ComparePartUri ( _
firstPartUri As Uri, _
secondPartUri As Uri _
) As Integer
Dim firstPartUri As Uri
Dim secondPartUri As Uri
Dim returnValue As Integer
returnValue = PackUriHelper.ComparePartUri(firstPartUri, _
secondPartUri)
public static int ComparePartUri(
Uri firstPartUri,
Uri secondPartUri
)
public:
static int ComparePartUri(
Uri^ firstPartUri,
Uri^ secondPartUri
)
public static function ComparePartUri(
firstPartUri : Uri,
secondPartUri : Uri
) : int
You cannot use methods in XAML.
Return Value
Type:
System..::.Int32A value that indicates the relationship between firstPartUri and secondPartUri.
Value | Meaning |
|---|
Less than 0 |
firstPartUri is less than secondPartUri. |
0 |
firstPartUri is equivalent to secondPartUri. |
Greater than 0 |
firstPartUri is greater than secondPartUri. |
| Exception | Condition |
|---|
| ArgumentException |
firstPartUri or secondPartUri is not a valid part URI syntax. |
If both firstPartUri and secondPartUri are nullNothingnullptra null reference (Nothing in Visual Basic), ComparePartUri returns 0. When comparing PackagePart URIs, a null URI is always less than a non-null URI. For cases where firstPartUri and secondPartUri are both relative PackagePart URIs, ComparePartUri performs the comparison.
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
.NET Framework
Supported in: 3.5, 3.0
Reference
Other Resources