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

Duplicate something in working copy, remembering history (svn copy)

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

Syntax

C#
public bool Copy(
	SvnTarget sourceTarget,
	string toPath,
	SvnCopyArgs args
)
Visual Basic (Declaration)
Public Function Copy ( _
	sourceTarget As SvnTarget, _
	toPath As String, _
	args As SvnCopyArgs _
) As Boolean
Visual C++
public:
bool Copy(
	SvnTarget^ sourceTarget, 
	String^ toPath, 
	SvnCopyArgs^ args
)

Parameters

sourceTarget
Type: SharpSvn..::.SvnTarget

[Missing <param name="sourceTarget"/> documentation for "M:SharpSvn.SvnClient.Copy(SharpSvn.SvnTarget,System.String,SharpSvn.SvnCopyArgs)"]

toPath
Type: System..::.String

[Missing <param name="toPath"/> documentation for "M:SharpSvn.SvnClient.Copy(SharpSvn.SvnTarget,System.String,SharpSvn.SvnCopyArgs)"]

args
Type: SharpSvn..::.SvnCopyArgs

[Missing <param name="args"/> documentation for "M:SharpSvn.SvnClient.Copy(SharpSvn.SvnTarget,System.String,SharpSvn.SvnCopyArgs)"]

Return Value

[Missing <returns> documentation for M:SharpSvn.SvnClient.Copy(SharpSvn.SvnTarget,System.String,SharpSvn.SvnCopyArgs)]

Remarks

Can be called with either a list of SvnTarget, SvnUriTarget or SvnPathTarget. All members must be of the same type.

See Also