.NET Framework Class Library
PackUriHelper..::.ComparePartUri Method

Returns a value that indicates whether two package part URIs are equivalent.

Namespace:  System.IO.Packaging
Assembly:  WindowsBase (in WindowsBase.dll)
Syntax

Visual Basic (Declaration)
Public Shared Function ComparePartUri ( _
    firstPartUri As Uri, _
    secondPartUri As Uri _
) As Integer
Visual Basic (Usage)
Dim firstPartUri As Uri
Dim secondPartUri As Uri
Dim returnValue As Integer

returnValue = PackUriHelper.ComparePartUri(firstPartUri, _
    secondPartUri)
C#
public static int ComparePartUri(
    Uri firstPartUri,
    Uri secondPartUri
)
Visual C++
public:
static int ComparePartUri(
    Uri^ firstPartUri, 
    Uri^ secondPartUri
)
JScript
public static function ComparePartUri(
    firstPartUri : Uri, 
    secondPartUri : Uri
) : int
XAML
You cannot use methods in XAML.

Parameters

firstPartUri
Type: System..::.Uri
The URI of the first PackagePart.
secondPartUri
Type: System..::.Uri
The URI of the second PackagePart.

Return Value

Type: System..::.Int32
A 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.


Exceptions

ExceptionCondition
ArgumentException

firstPartUri or secondPartUri is not a valid part URI syntax.

Remarks

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.

Platforms

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.
Version Information

.NET Framework

Supported in: 3.5, 3.0
See Also

Reference

Other Resources

Tags :


Page view tracker