Class StringItem
- Namespace
- CMS.DataEngine
- Assembly
- CMS.DataEngine.dll
Represents a wrapper of a string value for a purpose of a registration in DataTypeManager.
public sealed class StringItem
- Inheritance
-
objectStringItem
- Extension Methods
Constructors
StringItem(string)
Creates a new instance.
public StringItem(string value)
Parameters
value
stringString value.
Methods
Equals(object)
Determines whether the specified object is equal to the current object.
public override bool Equals(object obj)
Parameters
obj
objectThe object to compare with the current object.
Returns
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 string(StringItem)
Implicit cast operator from StringItem to string.
public static implicit operator string(StringItem item)
Parameters
item
StringItem
Returns
- string
implicit operator StringItem(string)
Implicit cast operator from string to StringItem.
public static implicit operator StringItem(string value)
Parameters
value
stringString value.