C# Класс Stubble.Core.Classes.Loaders.CompositeLoader

An IStubbleLoader with child loaders
Наследование: IStubbleLoader
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
AddLoader ( IStubbleLoader loader ) : CompositeLoader

Adds a new loader to the composite loader.

AddLoaders ( ) : CompositeLoader

Adds multiple loaders to the composite loader.

CompositeLoader ( ) : System.Collections.Generic

Initializes a new instance of the CompositeLoader class with child loaders.

Load ( string name ) : string

Loads a template with the given name. Returns null if the template is not found

Описание методов

AddLoader() публичный Метод

Adds a new loader to the composite loader.
public AddLoader ( IStubbleLoader loader ) : CompositeLoader
loader IStubbleLoader The loader to add
Результат CompositeLoader

AddLoaders() публичный Метод

Adds multiple loaders to the composite loader.
public AddLoaders ( ) : CompositeLoader
Результат CompositeLoader

CompositeLoader() публичный Метод

Initializes a new instance of the CompositeLoader class with child loaders.
public CompositeLoader ( ) : System.Collections.Generic
Результат System.Collections.Generic

Load() публичный Метод

Loads a template with the given name. Returns null if the template is not found
When a template is not found in the loader
public Load ( string name ) : string
name string The name of the template to load
Результат string