IKeyWithId Interface
Namespace: Stride.Core.YamlAssembly: Stride.Core.Assets.dll
An interface representing an association between an ItemId and the key of a dictionary.
public interface IKeyWithId
Name | Description | |
---|---|---|
Properties | ||
Id | The ItemId associated to the key. |
|
IsDeleted | Indicates whether this key is considered to be deleted in the dictionary, and kept around for reconcilation purpose. |
|
Key | The key of the dictionary. |
|
KeyType | The type of the key. |
Properties
Id
The ItemId associated to the key.
ItemId Id { get; }
Property Value
Type | Description |
---|---|
ItemId |
IsDeleted
Indicates whether this key is considered to be deleted in the dictionary, and kept around for reconcilation purpose.
bool IsDeleted { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
Key
The key of the dictionary.
object Key { get; }
Property Value
Type | Description |
---|---|
System.Object |
KeyType
The type of the key.
Type KeyType { get; }
Property Value
Type | Description |
---|---|
System.Type |