Class SmartFolderReference
- Namespace
- CMS.ContentEngine
- Assembly
- CMS.ContentEngine.dll
Represents smart folder reference data.
public sealed class SmartFolderReference
- Inheritance
-
objectSmartFolderReference
- Extension Methods
Constructors
SmartFolderReference()
public SmartFolderReference()
Properties
Identifier
Smart folder identifier.
public Guid Identifier { get; init; }
Property Value
- Guid
Methods
Equals(SmartFolderReference)
Determines whether the specified SmartFolderReference is equal to the current object.
Returns true if specified other object has the same Identifier value as the current object, false otherwise.
public bool Equals(SmartFolderReference other)
Parameters
otherSmartFolderReferenceThe SmartFolderReference object to compare with current object.
Returns
- bool
trueif the specified object is equal to the current object,falseotherwise.
Equals(object)
Determines whether the specified object is equal to the current object.
Returns true if the specified object is a SmartFolderReference and has the same Identifier value as the current object, false otherwise.
public override bool Equals(object obj)
Parameters
objobjectThe object to compare with the current object.
Returns
- bool
trueif the specified object is equal to the current object,falseotherwise.
GetHashCode()
Returns the hash code for the current object. The hash code is the same as the hash code of the Identifier value.
public override int GetHashCode()
Returns
- int
The hash code for the current object.