Enum type to describe the type of a LogNode
            
 
    Namespace: 
   SD.LLBLGen.Pro.Core
    Assembly:
   SD.LLBLGen.Pro.Core (in SD.LLBLGen.Pro.Core.dll) Version: 5.12.0.0 (5.12.0)
Syntax[FlagsAttribute]
public enum LogNodeType
<FlagsAttribute>
Public Enumeration LogNodeType
Members| 
									 
								 | Member name | Value | Description | 
|---|
 | None | 0 | 
            Undefined type.
             | 
 | GroupNode | 1 | 
            LogNode is a grouping node, which groups several nodes together
             | 
 | ActionDescription | 2 | 
            Lognode is an action description, describing an action on the parent.
             | 
 | Catalog | 4 | 
            Lognode represents actions on a catalog
             | 
 | Schema | 8 | 
            Lognode represents actions on a schema
             | 
 | Entity | 16 | 
            Lognode represents actions on an entity
             | 
 | TypedView | 32 | 
            Lognode represents actions on a typedview
             | 
 | TypedList | 64 | 
            Lognode represents actions on a typedlist
             | 
 | SPCall | 128 | 
            Lognode represents actions on a stored procedure call.
             | 
 | Project | 256 | 
            Lognode represents actions on a project 
             | 
 | TaskPerformer | 512 | 
            Lognode represents actions logged by a taskperformer
             | 
 | TaskGroup | 1024 | 
            Lognode represents actions logged by a taskgroup
             | 
 | Task | 2048 | 
            Lognode represents actions logged by a task
             | 
 | ErrorDescription | 4096 | 
            Lognode represents an error description.
             | 
 | ChangeDescription | 8192 | 
            Lognode represents a change description. This is an action description, though marks a change. 
             | 
 | WarningDescription | 16384 | 
            Lognode represents a warning description. This is an error description but not displayed as such.
             | 
 | TvfCall | 32768 | 
            Lognode represents actions on a tvf call.
             | 
See Also