Summary
This enum is used by the
DiffCommand.Ignore property
to specify whether to ignore certain types of differences that may be insignificant in meaning.
- Assembly
- Mercurial
.Net .dll - Namespace
- Mercurial
- Interfaces
-
- IComparable
- IFormattable
- IConvertible
- Base Types
-
- object
- ValueType
- Enum
graph TD
Base0["Enum"]-->Type
Base1["ValueType"]-->Base0
Base2["object"]-->Base1
Interface0["IComparable"]-.->Type
Interface1["IFormattable"]-.->Type
Interface2["IConvertible"]-.->Type
Type["DiffIgnores"]
class Type type-node
Syntax
public enum DiffIgnores
Attributes
| Type | Description |
|---|---|
| FlagsAttribute |
Fields
| Name | Constant Value | Summary |
|---|---|---|
| All | 7 |
Ignore whitespace, changes to whitespace, and blank lines (equivalent to
DiffIgnores.WhiteSpace | DiffIgnores.ChangedWhiteSpace | DiffIgnores.BlankLines.
static
|
| BlankLines | 4 |
If this flag is present; ignore changes whose lines are all blank.
static
|
| ChangedWhiteSpace | 2 |
If this flag is present; ignore changes in the amount of whitespace.
static
|
| None | 0 |
Ignore nothing, all changes are meaningful.
static
|
| WhiteSpace | 1 |
If this flag is present; ignore all whitespace when comparing lines.
static
|