GraphTransactionScopeOptions 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.
Options for the GraphTransactionScope
This enumeration supports a bitwise combination of its member values.
public enum class GraphTransactionScopeOptions
[System.Flags]
public enum GraphTransactionScopeOptions
[<System.Flags>]
type GraphTransactionScopeOptions =
Public Enum GraphTransactionScopeOptions
- Inheritance
-
GraphTransactionScopeOptions
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | |
DisableEvents | 128 | This is for internal use only. This option causes us to stop transacting certain changes. Currently only supports turning off "Add" operations in the case where the item being added was not already changed during the transaction. For example, this is used to stop lots of weird change events being generated inside GraphNode and GraphLink constructors. Instead, you get one event about that new node or link when it is added to the graph. |