Udostępnij za pośrednictwem


AddInProcess.IsCurrentProcess Właściwość

Definicja

Pobiera wartość wskazującą, czy bieżący AddInProcess obiekt reprezentuje proces aplikacji hosta.

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

Wartość właściwości

trueAddInProcess jeśli obiekt odpowiada bieżącemu procesowi; w przeciwnym razie false.

Przykłady

Poniższy przykład aktywuje dodatek w procesie zewnętrznym i używa IsCurrentProcess właściwości w celu określenia, czy dodatek znajduje się w tym samym procesie co proces aplikacji hosta.

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

Uwagi

Jeśli wartość tej właściwości to true, dodatek działa w procesie z aplikacją hosta. W takim przypadku użycie metody Start or Shutdown zgłasza błąd InvalidOperationException.

Uwaga

Właściwość AddInEnvironment.Process zwraca AddInProcess obiekt reprezentujący proces aplikacji hosta, jeśli dodatek jest uruchomiony w procesie.

Dotyczy