ScriptEngine.AddCOMObject(String, Guid, String) Method |
Creates a COM/ActiveX object on the specified server and exposes it to script code. The
registered class is specified by class identifier (CLSID).
Namespace: Microsoft.ClearScriptAssembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.5.0
Syntaxpublic void AddCOMObject(
string itemName,
Guid clsid,
string serverName
)
Public Sub AddCOMObject (
itemName As String,
clsid As Guid,
serverName As String
)
public:
virtual void AddCOMObject(
String^ itemName,
Guid clsid,
String^ serverName
) sealed
abstract AddCOMObject :
itemName : string *
clsid : Guid *
serverName : string -> unit
override AddCOMObject :
itemName : string *
clsid : Guid *
serverName : string -> unit
Parameters
- itemName String
- A name for the new global script item that will represent the object.
- clsid Guid
- The class identifier (CLSID) of the registered class to instantiate.
- serverName String
- The name of the server on which to create the object.
Implements
IScriptEngine.AddCOMObject(String, Guid, String)
Remarks
See Also