C# 클래스 SWFProcessing.Swiffotron.Processor.Extern

파일 보기 프로젝트 열기: WeeWorld/Swiffotron 1 사용 예제들

공개 메소드들

메소드 설명
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