C# 클래스 DotNetWorkQueue.Transport.SQLite.Basic.SqLiteCommandStringCache

Caches SQL command strings
파일 보기 프로젝트 열기: blehnen/DotNetWorkQueue

공개 메소드들

메소드 설명
Add ( string key, CommandString value ) : CommandString

Adds a new cached command string

Contains ( string key ) : bool

Determines whether [contains] [the specified key].

Get ( string key ) : CommandString

Gets the specified command string.

GetCommand ( SqLiteCommandStringTypes type ) : string

Gets the command for the indicated command type

SqLiteCommandStringCache ( TableNameHelper tableNameHelper ) : System

Initializes a new instance of the SqLiteCommandStringCache class.

비공개 메소드들

메소드 설명
BuildCommands ( ) : void

Builds the commands.

메소드 상세

Add() 공개 메소드

Adds a new cached command string
public Add ( string key, CommandString value ) : CommandString
key string The key.
value CommandString The value.
리턴 CommandString

Contains() 공개 메소드

Determines whether [contains] [the specified key].
public Contains ( string key ) : bool
key string The key.
리턴 bool

Get() 공개 메소드

Gets the specified command string.
public Get ( string key ) : CommandString
key string The key.
리턴 CommandString

GetCommand() 공개 메소드

Gets the command for the indicated command type
public GetCommand ( SqLiteCommandStringTypes type ) : string
type SqLiteCommandStringTypes The command type.
리턴 string

SqLiteCommandStringCache() 공개 메소드

Initializes a new instance of the SqLiteCommandStringCache class.
public SqLiteCommandStringCache ( TableNameHelper tableNameHelper ) : System
tableNameHelper TableNameHelper The table name helper.
리턴 System