Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Runs custom wizard logic at the beginning of a template wizard run.
Namespace: Microsoft.VisualStudio.TemplateWizard
Assembly: Microsoft.VisualStudio.TemplateWizardInterface (in Microsoft.VisualStudio.TemplateWizardInterface.dll)
Syntax
'Declaration
Sub RunStarted ( _
automationObject As Object, _
replacementsDictionary As Dictionary(Of String, String), _
runKind As WizardRunKind, _
customParams As Object() _
)
void RunStarted(
Object automationObject,
Dictionary<string, string> replacementsDictionary,
WizardRunKind runKind,
Object[] customParams
)
void RunStarted(
Object^ automationObject,
Dictionary<String^, String^>^ replacementsDictionary,
WizardRunKind runKind,
array<Object^>^ customParams
)
abstract RunStarted :
automationObject:Object *
replacementsDictionary:Dictionary<string, string> *
runKind:WizardRunKind *
customParams:Object[] -> unit
function RunStarted(
automationObject : Object,
replacementsDictionary : Dictionary<String, String>,
runKind : WizardRunKind,
customParams : Object[]
)
Parameters
- automationObject
Type: System.Object
The automation object being used by the template wizard.
- replacementsDictionary
Type: System.Collections.Generic.Dictionary<String, String>
The list of standard parameters to be replaced.
- runKind
Type: Microsoft.VisualStudio.TemplateWizard.WizardRunKind
A WizardRunKind indicating the type of wizard run.
- customParams
Type: array<System.Object[]
The custom parameters with which to perform parameter replacement in the project.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.