AddInToken.Activate<T> Method (AddInProcess, AddInSecurityLevel)
.NET Framework 3.5
Activates an add-in in an external process, in a new application domain, and with a specified trust level.
Assembly: System.AddIn (in System.AddIn.dll)
[PermissionSetAttribute(SecurityAction.Demand, Name = "FullTrust")] public T Activate<T>( AddInProcess process, AddInSecurityLevel level )
Type Parameters
- T
The interface or abstract base type that represents the host view of the add-in.
Parameters
- process
- Type: System.AddIn.Hosting.AddInProcess
The external process in which to activate the add-in.
- level
- Type: System.AddIn.Hosting.AddInSecurityLevel
One of the enumeration values that specifies the trust level.
Return Value
Type: TThe host view of the add-in.
The following example creates a new process and activates an add-in in that process with a full trust security level.
// 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 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);
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.