タグ

関連タグで絞り込む (2)

タグの絞り込みを解除

comに関するtatsu1010のブックマーク (2)

  • COM 呼び出し可能ラッパー

    COM クライアントが .NET オブジェクトを呼び出すと、共通言語ランタイムがマネージ オブジェクトとそのオブジェクトのための COM 呼び出し可能ラッパー (CCW: COM Callable Wrapper) を作成します。COM クライアントは .NET オブジェクトを直接参照できないため、CCW をマネージ オブジェクトのプロキシとして使用します。 ランタイムは、サービスを要求している COM クライアントの数に関係なく、1 つのマネージ オブジェクトに対して 1 つの CCW を作成します。次の図に示すように、複数の COM クライアントが、INew インターフェイスを公開する CCW への参照を保持できます。CCW は、INew インターフェイスを実装するマネージ オブジェクトへの 1 つの参照を保持し、ガベージ コレクションされます。COM クライアントと .NET クライ

    COM 呼び出し可能ラッパー
  • Runtime Callable Wrapper - .NET

    The common language runtime exposes COM objects through a proxy called the runtime callable wrapper (RCW). Although the RCW appears to be an ordinary object to .NET clients, its primary function is to marshal calls between a .NET client and a COM object. The runtime creates exactly one RCW for each COM object, regardless of the number of references that exist on that object. The runtime maintains

    Runtime Callable Wrapper - .NET
  • 1