FileState Enum

Summary

This enum contains possible file states for files reported by the Status(StatusCommand) command through the FileStatus object.
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["FileState"] class Type type-node

Syntax

public enum FileState

Fields

Name Constant Value Summary
Added 2
The file has been added, but not yet committed.
static
Clean 4
The file is clean (tracked, no changes detected.)
static
Ignored 6
The file is ignored.
static
Missing 5
The file is missing, but not marked as removed.
static
Modified 1
The file has been modified, but not yet committed.
static
Removed 3
The file has been removed, but not yet committed.
static
Unknown 0
The file is not tracked by Mercurial.
static