次の方法で共有


AddInProcess.IsCurrentProcess プロパティ

定義

現在の AddInProcess オブジェクトがホスト アプリケーションのプロセスを表しているかどうかを示す値を取得します。

public:
 property bool IsCurrentProcess { bool get(); };
public bool IsCurrentProcess { get; }
member this.IsCurrentProcess : bool
Public ReadOnly Property IsCurrentProcess As Boolean

プロパティ値

AddInProcess オブジェクトが現在のプロセスに対応する場合は true。それ以外の場合は false

次の例では、外部プロセスでアドインをアクティブ化し、 プロパティを IsCurrentProcess 使用して、アドインがホスト アプリケーション プロセスと同じプロセスにあるかどうかを判断します。

// Create an external process.
AddInProcess pExternal = new AddInProcess();

// Activate an add-in in the external process
// with a full trust security level.
Calculator CalcAddIn4 =
    selectedToken.Activate<Calculator>(pExternal,
    AddInSecurityLevel.FullTrust);

// Show that the add-in is an external process
// by verifying that it is not in the current (host's) process.
AddInController AddinCtl = AddInController.GetAddInController(CalcAddIn4);
Console.WriteLine("Add-in in host's process: {0}",
    AddinCtl.AddInEnvironment.Process.IsCurrentProcess);
' Create an external process.
Dim pExternal As New AddInProcess()

' Activate an add-in in the external process
' with a full trust security level.
Dim CalcAddIn4 As Calculator = _
    selectedToken.Activate(Of Calculator)(pExternal, _
        AddInSecurityLevel.FullTrust)

' Show that the add-in is an external process
' by verifying that it is not in the current (host's) process.
Dim AddinCtl As AddInController = AddInController.GetAddInController(CalcAddIn4)
Console.WriteLine("Add-in in host's process: {0}", _
 AddinCtl.AddInEnvironment.Process.IsCurrentProcess)

注釈

このプロパティの値が の場合、 trueアドインはホスト アプリケーションでインプロセスで実行されています。 その場合、 メソッドまたは メソッドをStart使用すると、 がInvalidOperationExceptionスローShutdownされます。

注意

プロパティは AddInEnvironment.ProcessAddInProcess アドインがインプロセスで実行されている場合にホスト アプリケーション プロセスを表す オブジェクトを返します。

適用対象