Summary
This enum is used by
BookmarkCommand
.Action
to specify which action to take.
- 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["BookmarkAction"]
class Type type-node
Syntax
public enum BookmarkAction
Fields
Name | Constant Value | Summary |
---|---|---|
CreateNew | 0 |
Create a new bookmark.
static
|
DeleteExisting | 2 |
Delete an existing bookmark. This is identical to using the "--delete" option with Mercurial.
static
|
MoveExisting | 1 |
Move an existing bookmark to a new revision. If the bookmark does not exist, create it
as though
CreateNew was specified. This is identical to using the "--force"
option with Mercurial.
static
|
RenameExisting | 3 |
Rename an existing bookmark to a new name. This is identical to using the "--rename NAME"
option with Mercurial.
static
|