See also:
NTier Windows Forms Framework Home
NTier Framework API reference
Constructor.
Namespace: NTier.Designer.InstallersAssembly: NTier.Designer (in NTier.Designer.dll) Version: 1.0.0.0
Syntax
C# |
---|
protected VSAddInRegistryInstaller(
Nullable<VisualStudioVersion> vsVersion,
bool loadOnDemand
) |
Visual Basic |
---|
Protected Sub New (
vsVersion As Nullable(Of VisualStudioVersion),
loadOnDemand As Boolean
) |
Visual C++ |
---|
protected:
VSAddInRegistryInstaller(
Nullable<VisualStudioVersion> vsVersion,
bool loadOnDemand
) |
Parameters
- vsVersion
- Type: System..::..Nullable<(Of <(<'VisualStudioVersion>)>)>
The VisualStudio version to install for.
- loadOnDemand
- Type: System..::..Boolean
When true, the add-in is loaded on demand when the user selects a tool button (using LOAD_BEHAVIOR_ONDEMAND | LOAD_BEHAVIOR_CONNECTFIRSTTIME).
When false, the add-in is loaded on startup (LOAD_BEHAVIOR_CONNECTED | LOAD_BEHAVIOR_ONSTARTUP).
See Also