HttpServerUtility.CreateObjectFromClsid(String) 方法

定义

创建 COM 对象的服务器实例,该对象由对象的类标识符 (CLSID) 标识。

public:
 System::Object ^ CreateObjectFromClsid(System::String ^ clsid);
public object CreateObjectFromClsid (string clsid);
member this.CreateObjectFromClsid : string -> obj
Public Function CreateObjectFromClsid (clsid As String) As Object

参数

clsid
String

要创建其实例的对象的类标识符。

返回

新对象。

例外

无法创建对象的实例。

示例

以下示例演示如何使用 CreateObjectFromClsid 方法创建 COM 对象的服务器实例。

String ClsidStr;
Object MyObject;

ClsidStr = "42754580-16b7-11ce-80eb-00aa003d7352";
MyObject = Server.CreateObject(ClsidStr);

Dim ClsidStr As String
Dim MyObject As Object
 
ClsidStr = "42754580-16b7-11ce-80eb-00aa003d7352"
MyObject = Server.CreateObject(ClsidStr)
   

适用于

另请参阅