This topic has not yet been rated - Rate this topic

Uri::Inequality Operator

Determines whether two Uri instances do not have the same value.

Namespace:  System
Assembly:  System (in System.dll)
public:
static bool operator !=(
	Uri^ uri1, 
	Uri^ uri2
)

Parameters

uri1
Type: System::Uri

A Uri instance to compare with uri2.

uri2
Type: System::Uri

A Uri instance to compare with uri1.

Return Value

Type: System::Boolean
A Boolean value that is true if the two Uri instances are not equal; otherwise, false. If either parameter is nullptr, this method returns true.

This overload uses the Equals method to determine whether the two Uri instances are not equivalent. UserInfo and Fragment content is ignored when making this comparison.

This example creates three Uri instances from strings and compares them to determine whether they represent the same value. Address2 and Address3 are not the same because Address3 contains a Query that is not found in Address2. The outcome is written to the console.

// Create some Uris.
Uri^ address1 = gcnew Uri( "http://www.contoso.com/index.htm#search" );
Uri^ address2 = gcnew Uri( "http://www.contoso.com/index.htm" );
Uri^ address3 = gcnew Uri( "http://www.contoso.com/index.htm?date=today" );

// The first two are equal because the fragment is ignored. 
if ( address1 == address2 )
   Console::WriteLine( "{0} is equal to {1}", address1, address2 );

// The second two are not equal. 
if ( address2 != address3 )
   Console::WriteLine( "{0} is not equal to {1}", address2, address3 );

.NET Framework

Supported in: 4.5, 4, 3.5, 3.0, 2.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Portable Class Library

Supported in: Portable Class Library

.NET for Windows Store apps

Supported in: Windows 8

Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.