  | SqlTargetDictionary Constructor  | 
            Constructor
            
 
Namespace: SandcastleBuilder.Components.TargetsAssembly: SandcastleBuilder.Components (in SandcastleBuilder.Components.dll) Version: 2014.11.22.0
Syntaxpublic SqlTargetDictionary(
	BuildComponentCore component,
	XPathNavigator configuration,
	string connectionString,
	string groupId,
	int localCacheSize,
	bool reload
)
Public Sub New ( 
	component As BuildComponentCore,
	configuration As XPathNavigator,
	connectionString As String,
	groupId As String,
	localCacheSize As Integer,
	reload As Boolean
)
public:
SqlTargetDictionary(
	BuildComponentCore^ component, 
	XPathNavigator^ configuration, 
	String^ connectionString, 
	String^ groupId, 
	int localCacheSize, 
	bool reload
)
new : 
        component : BuildComponentCore * 
        configuration : XPathNavigator * 
        connectionString : string * 
        groupId : string * 
        localCacheSize : int * 
        reload : bool -> SqlTargetDictionaryParameters
- component
 - Type: Sandcastle.Core.BuildAssembler.BuildComponentBuildComponentCore
The build component that owns the dictionary.  This is useful for logging
            messages during initialization. - configuration
 - Type: System.Xml.XPathXPathNavigator
The target dictionary configuration - connectionString
 - Type: SystemString
The connection string to use - groupId
 - Type: SystemString
The group ID to use - localCacheSize
 - Type: SystemInt32
The local cache size to use - reload
 - Type: SystemBoolean
True to reload the cache or false to leave it alone.  This is used to reload
            project data so that it is always current. 
Return Value
Type: 
A target dictionary instance that uses a simple in-memory
            
DictionaryTKey, TValue instance to store the targets.
See Also