Urn.Inequality Operator
Tests inequality between Urn objects. Do not reference this member directly in your code. It supports the SQL Server infrastructure.
Namespace: Microsoft.SqlServer.Management.Sdk.Sfc
Assembly: Microsoft.SqlServer.Management.Sdk.Sfc (in Microsoft.SqlServer.Management.Sdk.Sfc.dll)
Syntax
'Declaration
Public Shared Operator <> ( _
urn1 As Urn, _
urn2 As Urn _
) As Boolean
'Usage
Dim urn1 As Urn
Dim urn2 As Urn
Dim returnValue As Boolean
returnValue = (urn1 <> urn2)
public static bool operator !=(
Urn urn1,
Urn urn2
)
public:
static bool operator !=(
Urn^ urn1,
Urn^ urn2
)
static let inline(<>)
urn1:Urn *
urn2:Urn : bool
JScript supports the use of overloaded operators, but not the declaration of new ones.
Parameters
- urn1
Type: Microsoft.SqlServer.Management.Sdk.Sfc.Urn
An Urn object to compare.
- urn2
Type: Microsoft.SqlServer.Management.Sdk.Sfc.Urn
An Urn object to compare.
Return Value
Type: System.Boolean
Returns True if the objects are not equal.