BisectState Enum

Summary

This enum is used by the BisectCommand.State property, to specify how to continue with the bisect command.
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["BisectState"] class Type type-node

Syntax

public enum BisectState

Fields

Name Constant Value Summary
Bad 3
Mark the changeset as bad.
static
Good 2
Mark the changeset as good.
static
None 0
No state has been set yet, this is the default value and is used to force the code to set a state before executing the BisectCommand.
static
Reset 4
Reset the BisectCommand, ending the search for the first good changeset.
static
Skip 1
Skip testing the changeset.
static