Table of Contents

Interface IIdentifiableOwnerTrySearch<TIdentifiable>

Namespace
MonkeyLoader.Meta
Assembly
MonkeyLoader.dll

Defines the interface for a try-search of an IIdentifiableOwner<TNestedIdentifiable>'s direct INestedIdentifiable child items.

public interface IIdentifiableOwnerTrySearch<TIdentifiable> : INestedIdentifiableOwnerTrySearch<TIdentifiable>, INestedIdentifiableTrySearch<TIdentifiable> where TIdentifiable : INestedIdentifiable

Type Parameters

TIdentifiable

The type of the INestedIdentifiable child items.

Inherited Members

Methods

ById(string, out TIdentifiable?)

Tries searching for a direct child item by its given id.

bool ById(string id, out TIdentifiable? item)

Parameters

id string

The Id of the item to search for.

item TIdentifiable

The item if found; otherwise, default(TIdentifiable).

Returns

bool

true if an item was found; otherwise, false.