Table of Contents

Class GuidItem

Namespace
CMS.DataEngine
Assembly
CMS.DataEngine.dll

Represents a wrapper of a GUID value for a purpose of a registration in DataTypeManager.

public sealed class GuidItem
Inheritance
object
GuidItem
Extension Methods

Constructors

GuidItem(Guid)

Creates a new instance.

public GuidItem(Guid value)

Parameters

value Guid

GUID value.

Methods

Equals(object)

Determines whether the specified object is equal to the current object.

public override bool Equals(object obj)

Parameters

obj object

The object to compare with the current object.

Returns

bool

true if the specified object is equal to the current object; otherwise, false.

GetHashCode()

Serves as the default hash function.

public override int GetHashCode()

Returns

int

A hash code for the current object.

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.

Operators

implicit operator Guid(GuidItem)

Implicit cast operator from GuidItem to System.Guid.

public static implicit operator Guid(GuidItem item)

Parameters

item GuidItem

Item with wrapped value.

Returns

Guid

implicit operator GuidItem(Guid)

Implicit cast operator from System.Guid to GuidItem.

public static implicit operator GuidItem(Guid value)

Parameters

value Guid

GUID value.

Returns

GuidItem