HttpServerUtility.CreateObjectFromClsid Method
.NET Framework 3.0
Creates a server instance of a COM object identified by the object's class identifier (CLSID).
Namespace: System.Web
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
'Declaration Public Function CreateObjectFromClsid ( _ clsid As String _ ) As Object 'Usage Dim instance As HttpServerUtility Dim clsid As String Dim returnValue As Object returnValue = instance.CreateObjectFromClsid(clsid)
public Object CreateObjectFromClsid ( String clsid )
public function CreateObjectFromClsid ( clsid : String ) : Object
Not applicable.
Parameters
- clsid
The class identifier of the object to create an instance of.
Return Value
The new object.The following example demonstrates how to use the CreateObjectFromClsid method to create a server instance of a COM object.
Dim ClsidStr As String Dim MyObject As Object ClsidStr = "42754580-16b7-11ce-80eb-00aa003d7352" MyObject = Server.CreateObject(ClsidStr)
String clsidStr; Object myObject; clsidStr = "42754580-16b7-11ce-80eb-00aa003d7352"; myObject = get_Server().CreateObject(clsidStr);
var clsidStr : String var myObject : Object clsidStr = "42754580-16b7-11ce-80eb-00aa003d7352" myObject = Server.CreateObject(clsidStr)
- SecurityPermission for executing unmanaged code. Demand value: Demand
Community Additions
ADD
Show: