Table of Contents

Interface IKeyWithId

Namespace
Stride.Core.Yaml
Assembly
Stride.Core.Assets.dll

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

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

bool

Key

The key of the dictionary.

object Key { get; }

Property Value

object

KeyType

The type of the key.

Type KeyType { get; }

Property Value

Type