Enum MiniDump.Option
Specifies the type of information to include in the minidump file.
Namespace: Umbraco.Cms.Core.Diagnostics
Assembly: Umbraco.Core.dll
Syntax
[Flags]
public enum MiniDump.Option : uint
Remarks
These values correspond to the MINIDUMP_TYPE enumeration in dbghelp.h.
Fields
| Name | Description |
|---|---|
| FilterMemory | Stack and backing store memory written to the minidump file should be filtered. |
| FilterModulePaths | Filter module paths for information such as user names or important directories. |
| IgnoreInaccessibleMemory | Ignore inaccessible memory during memory enumeration. |
| Normal | Include just the information necessary to capture stack traces for all existing threads in a process. |
| ScanMemory | Stack and backing store memory should be scanned for pointer references to modules. |
| ValidTypeFlags | Mask of all valid type flags. |
| WithCodeSegs | Include all code and code-related sections from loaded modules. |
| WithDataSegs | Include the data sections from all loaded modules. |
| WithFullAuxiliaryState | Requests that auxiliary data providers include their state in the dump. |
| WithFullMemory | Include all accessible memory in the process. |
| WithFullMemoryInfo | Include memory region information. |
| WithHandleData | Include high-level information about the operating system handles. |
| WithIndirectlyReferencedMemory | Include pages with data referenced by locals or other stack memory. |
| WithPrivateReadWriteMemory | Scan the virtual address space for PAGE_READWRITE memory to be included. |
| WithPrivateWriteCopyMemory | Scan the virtual address space for PAGE_WRITECOPY memory to be included. |
| WithProcessThreadData | Include complete per-process and per-thread information. |
| WithThreadInfo | Include thread state information. |
| WithUnloadedModules | Include information from the list of modules that were recently unloaded. |
| WithoutAuxiliaryState | Turns off secondary auxiliary-supported memory gathering. |
| WithoutOptionalData | Reduce the data that is dumped by eliminating memory regions that are not essential. |