[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
)
Visual Basic (Declaration)
Public Function Import ( _
	path As String, _
	target As Uri _
) As Boolean
Visual C++
public:
bool Import(
	String^ path, 
	Uri^ target
)

Parameters

path
Type: System..::.String

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

target
Type: System..::.Uri

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

Return Value

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

Remarks

Implemented as an Add follwed by an obstructed checkout

See Also