C# Класс SWFProcessing.Swiffotron.Processor.Extern

Показать файл Открыть проект Примеры использования класса

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

Метод Описание
CreateCache ( string name, string assembly, string classname, string init ) : ISwiffotronCache

Creates a cache object by name, as specified in the config file.

CreateStore ( string name, string assembly, string classname, string init ) : ISwiffotronStore

Creates a store object by name, as specified in the config file.

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

CreateCache() публичный статический Метод

Creates a cache object by name, as specified in the config file.
public static CreateCache ( string name, string assembly, string classname, string init ) : ISwiffotronCache
name string The name for this cache that will be referenced in /// any swiffotron XML files.
assembly string The fully qualified assembly name. Pass an empty /// string or null to reference the currently executing assembly and use /// any default implementors.
classname string The fully qualified class name
init string An initialisation string passed in the call to Initialise /// on the new cache object.
Результат ISwiffotronCache

CreateStore() публичный статический Метод

Creates a store object by name, as specified in the config file.
public static CreateStore ( string name, string assembly, string classname, string init ) : ISwiffotronStore
name string The name for this store that will be referenced in /// any swiffotron XML files.
assembly string The fully qualified assembly name. Pass an empty /// string or null to reference the currently executing assembly and use /// any default implementors.
classname string The fully qualified class name
init string An initialisation string passed in the call to Initialise /// on the new store object.
Результат ISwiffotronStore