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
属性

フィールド

名前 説明
Construction 4

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

Context 8

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

AppDomain 12

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

Process 16

プロセスを開始します。

Machine 20

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

注釈

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

適用対象