ActivationOption Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the manner in which serviced components are activated in the application.
public enum class ActivationOption
[System.Serializable]
public enum ActivationOption
[<System.Serializable>]
type ActivationOption =
Public Enum ActivationOption
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
Library | 0 | Specifies that serviced components in the marked application are activated in the creator's process. |
Server | 1 | Specifies that serviced components in the marked application are activated in a system-provided process. |
Examples
The following code example demonstrates the use of this enumeration.
[assembly:ApplicationName("Calculator")];
[assembly:ApplicationActivation(ActivationOption::Library)];
[assembly:System::Reflection::AssemblyKeyFile("Calculator.snk")];
public ref class Calculator: public ServicedComponent
{
public:
int Add( int x, int y )
{
return (x + y);
}
};
using System;
using System.EnterpriseServices;
[assembly: ApplicationName("Calculator")]
[assembly: ApplicationActivation(ActivationOption.Library)]
[assembly: System.Reflection.AssemblyKeyFile("Calculator.snk")]
public class Calculator : ServicedComponent
{
public int Add (int x, int y)
{
return(x+y);
}
}
Remarks
The activation setting for the application defaults to Library
.