Share via


SPContentTypeId.Inequality operator

Indicates whether the two specified content type identifiers (IDs) are not equal.

Namespace:  Microsoft.SharePoint
Assembly:  Microsoft.SharePoint (in Microsoft.SharePoint.dll)

Syntax

'Declaration
Public Shared Operator <> ( _
    id1 As SPContentTypeId, _
    id2 As SPContentTypeId _
) As Boolean
'Usage
Dim id1 As SPContentTypeId
Dim id2 As SPContentTypeId
Dim returnValue As Boolean

returnValue = (id1 <> id2)
public static bool operator !=(
    SPContentTypeId id1,
    SPContentTypeId id2
)

Parameters

Return value

Type: System.Boolean
true if the two values are not equal; otherwise, false.

Remarks

The SPContentTypeId structure implements the IComparable interface. This method implements the != operator. To call the method, use the operator with two SPContentTypeId objects, as shown in the following example.

SPContentTypeId x = SPBuiltInContentTypeId.BasicPage;
SPContentTypeId y = SPBuiltInContentTypeId.Document;
Console.WriteLine(x != y); // True
Dim x As SPContentTypeId = SPBuiltInContentTypeId.BasicPage
Dim y As SPContentTypeId = SPBuiltInContentTypeId.Document
Console.WriteLine(x IsNot y) ' True

See also

Reference

SPContentTypeId structure

SPContentTypeId members

Microsoft.SharePoint namespace

Other resources

Content Type IDs

Introduction to Content Types

Site and List Content Types

Base Content Type Hierarchy