次の方法で共有


HttpServerUtility.CreateObjectFromClsid メソッド

オブジェクトのクラス ID (CLSID) で識別されている COM オブジェクトのサーバー インスタンスを作成します。

名前空間: System.Web
アセンブリ: System.Web (system.web.dll 内)

構文

'宣言
Public Function CreateObjectFromClsid ( _
    clsid As String _
) As Object
'使用
Dim instance As HttpServerUtility
Dim clsid As String
Dim returnValue As Object

returnValue = instance.CreateObjectFromClsid(clsid)
public Object CreateObjectFromClsid (
    string clsid
)
public:
Object^ CreateObjectFromClsid (
    String^ clsid
)
public Object CreateObjectFromClsid (
    String clsid
)
public function CreateObjectFromClsid (
    clsid : String
) : Object
適用できません。

パラメータ

  • clsid
    インスタンスを作成するオブジェクトのクラス ID。

戻り値

新しいオブジェクト。

例外

例外の種類 条件

HttpException

オブジェクトのインスタンスを作成できませんでした。

使用例

CreateObjectFromClsid メソッドを使用して、COM オブジェクトのサーバー インスタンスを作成する方法のコード例を次に示します。

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 = 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)
   

.NET Framework のセキュリティ

  • SecurityPermission  (アンマネージ コードを実行するために必要なアクセス許可)。要求値 : Demand

プラットフォーム

Windows 98,Windows Server 2000 SP4,Windows CE,Windows Millennium Edition,Windows Mobile for Pocket PC,Windows Mobile for Smartphone,Windows Server 2003,Windows XP Media Center Edition,Windows XP Professional x64 Edition,Windows XP SP2,Windows XP Starter Edition

Microsoft .NET Framework 3.0 は Windows Vista,Microsoft Windows XP SP2,および Windows Server 2003 SP1 でサポートされています。

バージョン情報

.NET Framework

サポート対象 : 3.0,2.0,1.1,1.0

参照

関連項目

HttpServerUtility クラス
HttpServerUtility メンバ
System.Web 名前空間
CreateObject