C# Class SWFProcessing.Swiffotron.Processor.Extern

显示文件 Open project: WeeWorld/Swiffotron Class Usage Examples

Public Methods

Method Description
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.

Method Details

CreateCache() public static method

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.
return ISwiffotronCache

CreateStore() public static method

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.
return ISwiffotronStore