Table of Contents

Interface INestedIdentifiableOwnerTrySearch<TIdentifiable>

Namespace
MonkeyLoader.Meta
Assembly
MonkeyLoader.dll

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

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

Type Parameters

TIdentifiable

The type of the indirect INestedIdentifiable child items.

Inherited Members

Methods

ByPartialId(string, out TIdentifiable?)

Tries searching for an indirect child item by the given partial id, which is what remains of its FullId after the search root's FullId.

bool ByPartialId(string partialId, out TIdentifiable? item)

Parameters

partialId string

The partial FullId 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.