C# Класс Bari.Core.Model.Loader.InMemoryYamlModelLoader

Model loader implementation which loads a YAML document directly from a string Used primarily for testing
Наследование: YamlModelLoaderBase, IModelLoader
Показать файл Открыть проект

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

Метод Описание
InMemoryYamlModelLoader ( ISuiteFactory suiteFactory, IEnumerable parametersLoaders, IUserOutput output, IPluginLoader pluginLoader, IEnvironmentVariableContext environmentVariableContext, ISuiteValidator suiteValidator ) : System.Collections.Generic

Creates the model loader

Load ( string source ) : Suite

Loads a suite model from the given source

It is guaranteed that this method will only be called if IModelLoader.Supports return true for the same source.

Supports ( string source ) : bool

Returns true if the loader can load suite model from the given source

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

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

Creates the model loader
public InMemoryYamlModelLoader ( ISuiteFactory suiteFactory, IEnumerable parametersLoaders, IUserOutput output, IPluginLoader pluginLoader, IEnvironmentVariableContext environmentVariableContext, ISuiteValidator suiteValidator ) : System.Collections.Generic
suiteFactory ISuiteFactory Factory interface to create new suite instances
parametersLoaders IEnumerable Parameter loader implementations
output IUserOutput Output interface to issue warnings
pluginLoader IPluginLoader Plugin loader interface
environmentVariableContext IEnvironmentVariableContext Environment variable context
suiteValidator ISuiteValidator
Результат System.Collections.Generic

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

Loads a suite model from the given source

It is guaranteed that this method will only be called if IModelLoader.Supports return true for the same source.

public Load ( string source ) : Suite
source string Source, can mean anything (file names, urls, markup, etc.)
Результат Suite

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

Returns true if the loader can load suite model from the given source
public Supports ( string source ) : bool
source string Source, can mean anything (file names, urls, markup, etc.)
Результат bool