[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for T:SharpSvn.SvnDepth]

Namespace:  SharpSvn
Assembly:  SharpSvn (in SharpSvn.dll) Version: 1.4999.582.31705

Syntax

C#
public enum SvnDepth
Visual Basic (Declaration)
Public Enumeration SvnDepth
Visual C++
public enum class SvnDepth

Members

Member nameDescription
Unknown
Depth undetermined or ignored
Infinity
D + all descendants (full recursion from D). Updates will pull in any files or subdirectories not already present; those subdirectories' this_dir entries will have depth-infinity. Equivalent to the pre-1.5 default update behavior.
Children
D + immediate children (D and its entries). Updates will pull in any files or subdirectories not already present; those subdirectories' this_dir entries will have depth-empty.
Files
D + its file children, but not subdirs. Updates will pull in any files not already present, but not subdirectories.
Empty
Just the named directory D, no entries. Updates will not pull in any files or subdirectories not already present

See Also