VBScriptEngine Constructor (String, ISyncInvoker) |
Initializes a new VBScript engine instance with the specified name.
Namespace:
Microsoft.ClearScript.Windows.Core
Assembly:
ClearScript.Windows.Core (in ClearScript.Windows.Core.dll) Version: 7.2.3
Syntaxpublic VBScriptEngine(
string name,
ISyncInvoker syncInvoker
)
Public Sub New (
name As String,
syncInvoker As ISyncInvoker
)
public:
VBScriptEngine(
String^ name,
ISyncInvoker^ syncInvoker
)
new :
name : string *
syncInvoker : ISyncInvoker -> VBScriptEngine
Parameters
- name
- Type: SystemString
A name to associate with the instance. Currently this name is used only as a label in presentation contexts such as debugger user interfaces. - syncInvoker
- Type: Microsoft.ClearScript.Windows.CoreISyncInvoker
An object that enforces thread affinity for the instance.
See Also