Compartilhar via


SPContentTypeId.Equality operator

Indica se os dois identificadores de tipo de conteúdo especificado (IDs) são iguais.

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

Syntax

'Declaração
Public Shared Operator = ( _
    id1 As SPContentTypeId, _
    id2 As SPContentTypeId _
) As Boolean
'Uso
Dim id1 As SPContentTypeId
Dim id2 As SPContentTypeId
Dim returnValue As Boolean

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

Parâmetros

Valor retornado

Type: System.Boolean
true se os dois valores são iguais; Caso contrário false.

Comentários

A estrutura SPContentTypeId implementa a interface de IComparable . Esse método implementa o operador de igualdade. Para chamar o método, use o operador de equality com dois objetos SPContentTypeId , conforme mostrado no exemplo a seguir.

SPContentTypeId x = SPBuiltInContentTypeId.Item;
SPContentTypeId y = x;
Console.WriteLine(x == y); // True
Dim x As SPContentTypeId = SPBuiltInContentTypeId.Item
Dim y As SPContentTypeId = x
Console.WriteLine(x Is y) ' True

Ver também

Referência

SPContentTypeId structure

SPContentTypeId members

Microsoft.SharePoint namespace

Outros recursos

Content Type IDs

Introduction to Content Types

Site and List Content Types

Base Content Type Hierarchy