SvnInfo Class

Summary

Class for retrieving information about a Subversion controlled file or directory.
Namespace
Cake.Svn.Info
Base Types
graph TD Base0["SvnTool<TSettings>"]-->Type click Base0 "/Cake.Svn/api/Cake.Svn/SvnTool_1" Base1["object"]-->Base0 Type["SvnInfo"] class Type type-node

Syntax

public sealed class SvnInfo : SvnTool<SvnRemoteSettings>

Constructors

Name Summary
SvnInfo(ICakeEnvironment, Func<ISvnClient>) Initializes a new instance of the SvnInfo class.

Methods

Name Value Summary
GetClient() ISvnClient
Returns a new instance of a Subversion client.
Inherited from SvnTool<TSettings>
GetInfo(DirectoryPath, SvnInfoSettings) IEnumerable<T>
Gets Subversion information about the directory at directoryPath.
GetInfo(FilePath, SvnInfoSettings) IEnumerable<T>
Gets Subversion information about the file at filePath.
GetInfo(Uri, SvnInfoSettings) IEnumerable<T>
Gets Subversion information about the file or directory at repositoryUrl.
IsDirectoryInSvnWorkingCopy(DirectoryPath) bool
Gets the information whether the directoryPath was added to the Subversion working copy.
IsFileInSvnWorkingCopy(FilePath) bool
Gets the information whether the filePath was added to the Subversion working copy.
GitHub