ClassEventId
Represents a unique identifier wrapper for scheduler events and resources that provides type-safe key value handling and comparison functionality.
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.Scheduler.dll
Syntax:
public class EventId : IComparable
Inheritance: objectEventId
Implements:
Constructors
EventId()
Initializes a new instance of the EventId class with a null key value.
Declaration
public EventId()
EventId(object)
Initializes a new instance of the EventId class with the specified key value.
Declaration
public EventId(object keyValue)
Parameters
keyValue
The object that serves as the unique identifier.
Properties
Methods
Equals(object)
Determines whether the specified object is equal to this EventId instance.
GetHashCode()
Returns a hash code for this EventId instance.
Declaration
public override int GetHashCode()
Returns
A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
Overrides
ToString()
Returns a string that represents this EventId instance.
Declaration
public override string ToString()
Returns
A string representation of the key value, or the base object string if the key value is null.
Overrides