SvnKind Enum

Summary

The kind of the Subversion Node.
Namespace
Cake.Svn
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["SvnKind"] class Type type-node

Syntax

public enum SvnKind

Fields

Name Constant Value Summary
Directory 2
The kind of the node is a directory.
static
File 1
The kind of the node is a file.
static
None 0
The kind of the node ist not set.
static
SymbolicLink 4
The kind of the node is a symbolic link.
static
Unknown 3
The kind of the node is unknown.
static
GitHub