Table of Contents

Method Load

Namespace
Bonsai.Resources
Assembly
Bonsai.System.dll

Load(IEnumerable<IResourceConfiguration>)

Loads a set of resources into the resource manager.

public IDisposable Load(IEnumerable<IResourceConfiguration> source)

Parameters

source IEnumerable<IResourceConfiguration>

A collection of resources to load into the resource manager.

Returns

IDisposable

A IDisposable object which can be used to unload the loaded resources.

Load<TResource>(string)

Loads the resource with the specified name into the resource manager.

public TResource Load<TResource>(string name) where TResource : IDisposable

Parameters

name string

The name of the resource to load.

Returns

TResource

The loaded resource. Repeated calls to load the same resource will return the same object instance.

Type Parameters

TResource

The type of the loaded resource.