Interface IKeyWithId
An interface representing an association between an ItemId and the key of a dictionary.
public interface IKeyWithId
Properties
Id
The ItemId associated to the key.
ItemId Id { get; }
Property Value
IsDeleted
Indicates whether this key is considered to be deleted in the dictionary, and kept around for reconcilation purpose.
bool IsDeleted { get; }
Property Value
Key
The key of the dictionary.
object Key { get; }
Property Value
KeyType
The type of the key.
Type KeyType { get; }