| PlugInConfigurationDictionaryAdd Method (String, Boolean, String) |
Add a new item to the dictionary
Namespace: SandcastleBuilder.Utils.BuildComponentAssembly: SandcastleBuilder.Utils (in SandcastleBuilder.Utils.dll) Version: 2014.11.22.0
Syntax public PlugInConfiguration Add(
string id,
bool enabled,
string config
)
Public Function Add (
id As String,
enabled As Boolean,
config As String
) As PlugInConfiguration
public:
PlugInConfiguration^ Add(
String^ id,
bool enabled,
String^ config
)
member Add :
id : string *
enabled : bool *
config : string -> PlugInConfiguration
Parameters
- id
- Type: SystemString
The plug-in ID - enabled
- Type: SystemBoolean
True for enabled, false disabled - config
- Type: SystemString
The plug-in configuration
Return Value
Type:
PlugInConfigurationThe
PlugInConfiguration added to the project. If the ID already exists in
the collection, the existing item is returned.
Remarks The
PlugInConfiguration constructor is internal so that we control creation
of the items and can associate them with the project.
See Also