PartitionOption 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.
Indicates the context in which to run the COM+ partition.
public enum class PartitionOption
[System.Runtime.InteropServices.ComVisible(false)]
[System.Serializable]
public enum PartitionOption
[<System.Runtime.InteropServices.ComVisible(false)>]
[<System.Serializable>]
type PartitionOption =
Public Enum PartitionOption
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
Ignore | 0 | The enclosed context runs in the Global Partition. Ignore is the default setting for PartitionOption when Inheritance is set to Ignore. |
Inherit | 1 | The enclosed context runs in the current containing COM+ partition. This is the default setting for PartitionOption when Inheritance is set to Inherit. |
New | 2 | The enclosed context runs in a COM+ partition that is different from the current containing partition. |
Remarks
For information on partitions, see COM+ Partitions.