ActivatorLevel 列挙型

定義

アクティベーターのチェイン内で Activator の適切な位置を定義します。

public enum class ActivatorLevel
[System.Serializable]
public enum ActivatorLevel
[System.Serializable]
[System.Runtime.InteropServices.ComVisible(true)]
public enum ActivatorLevel
[<System.Serializable>]
type ActivatorLevel = 
[<System.Serializable>]
[<System.Runtime.InteropServices.ComVisible(true)>]
type ActivatorLevel = 
Public Enum ActivatorLevel
継承
ActivatorLevel
属性

フィールド

AppDomain 12

AppDomain を検索または作成します。

Construction 4

空のオブジェクトを構築し、コンストラクターを実行します。

Context 8

適切なコンテキストを検索または作成します。

Machine 20

適切なコンピューターを検索します。

Process 16

プロセスを開始します。

注釈

アクティベーターの設計により、複数のアクティベーターがアクティブ化プロセスに参加できるようになり、 を使用 IActivator.NextActivatorして追加のアクティベーターをチェーンに追加できます。 各アクティベーターはチェーン内の次のアクティベーターを呼び出す役割を担うため、アクティベーターはチェーン内の任意の場所に自身を配置できます。 列挙子は ActivatorLevel 、アクティベーターがチェーン内の適切な位置を見つけるのに役立ちます。

適用対象