Table of Contents

Interface IIdentifiableSearch<TIdentifiable>

Namespace
MonkeyLoader.Meta
Assembly
MonkeyLoader.dll

Defines the interface for a search of a root IIdentifiable item.

public interface IIdentifiableSearch<out TIdentifiable> where TIdentifiable : IIdentifiable

Type Parameters

TIdentifiable

The type of the IIdentifiable items.

Methods

ById(string)

Searches for an item by its given id.

TIdentifiable ById(string id)

Parameters

id string

The Id of the item to search for.

Returns

TIdentifiable

The found item.

Exceptions

KeyNotFoundException

When no item with the given id was found.