StorageUri.Inequality Method

Windows Runtime Azure Storage Client Library

Compares two StorageUri objects for non-equivalency.

Namespace: Microsoft.WindowsAzure.Storage
Assembly: Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)

Usage

Visual Basic
Dim uri1 As StorageUri
Dim uri2 As StorageUri
Dim returnValue As Boolean

returnValue = (uri1 <> uri2)

Syntax

Visual Basic
Public Shared Operator <> ( _
	uri1 As StorageUri, _
	uri2 As StorageUri _
) As Boolean
C#
public static bool operator != (
	StorageUri uri1,
	StorageUri uri2
)
C++
public:
static bool operator != (
	StorageUri^ uri1, 
	StorageUri^ uri2
)
J#
JScript

Parameters

uri1

The first StorageUri object to compare.

uri2

The second StorageUri object to compare.

Return Value

true if the StorageUri objects have non-equivalent values; otherwise, false.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows Vista, Windows 7, Windows Server 2008, Windows 8.1, Windows Server 2012 R2, Windows 8 and Windows Server 2012

Target Platforms

See Also