NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

COM+ 1.0 JIT Activation

Just-In-Time activation and deactivation is a required attribute for automatic transactions. If you configure a class to support, require, or require a new transaction, Windows 2000 Component Services will configure JIT activation by default.

The following class defines the JIT attribute.

[AttributeUsage(AttributeTargets.Class)]
public class JustInTimeActivationAttribute : Attribute
{
  public JustInTimeActivationAttribute();
  public JustInTimeActivationAttribute(bool mode);
}