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

Performs a working copy import to the specified Uri, by importing the root remotely, checking that out and then adding the files locally

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

Syntax

C#
public bool Import(
	string path,
	Uri target,
	SvnImportArgs args
)
Visual Basic (Declaration)
Public Function Import ( _
	path As String, _
	target As Uri, _
	args As SvnImportArgs _
) As Boolean
Visual C++
public:
bool Import(
	String^ path, 
	Uri^ target, 
	SvnImportArgs^ args
)

Parameters

path
Type: System..::.String

[Missing <param name="path"/> documentation for "M:SharpSvn.SvnClient.Import(System.String,System.Uri,SharpSvn.SvnImportArgs)"]

target
Type: System..::.Uri

[Missing <param name="target"/> documentation for "M:SharpSvn.SvnClient.Import(System.String,System.Uri,SharpSvn.SvnImportArgs)"]

args
Type: SharpSvn..::.SvnImportArgs

[Missing <param name="args"/> documentation for "M:SharpSvn.SvnClient.Import(System.String,System.Uri,SharpSvn.SvnImportArgs)"]

Return Value

[Missing <returns> documentation for M:SharpSvn.SvnClient.Import(System.String,System.Uri,SharpSvn.SvnImportArgs)]

Remarks

Implemented as an Add follwed by an obstructed checkout

See Also