Interface INestedIdentifiableTrySearch<TIdentifiable>
- Namespace
- MonkeyLoader.Meta
- Assembly
- MonkeyLoader.dll
Defines the interface for a try-search of an INestedIdentifiable item.
public interface INestedIdentifiableTrySearch<TIdentifiable> where TIdentifiable : INestedIdentifiable
Type Parameters
TIdentifiableThe type of the INestedIdentifiable items.
Methods
ByFullId(string, out TIdentifiable?)
Tries searching for an item by its given FullId.
bool ByFullId(string fullId, out TIdentifiable? item)
Parameters
fullIdstringThe FullId of the item to search for.
itemTIdentifiableThe item if found; otherwise,
default(.TIdentifiable)
Returns
- bool
trueif an item was found; otherwise,false.