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

Gets the specified property from the specfied path

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

Syntax

C#
public bool GetProperty(
	SvnTarget target,
	string propertyName,
	out string value
)
Visual Basic (Declaration)
Public Function GetProperty ( _
	target As SvnTarget, _
	propertyName As String, _
	<OutAttribute> ByRef value As String _
) As Boolean
Visual C++
public:
bool GetProperty(
	SvnTarget^ target, 
	String^ propertyName, 
	[OutAttribute] String^% value
)

Parameters

target
Type: SharpSvn..::.SvnTarget

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

propertyName
Type: System..::.String

[Missing <param name="propertyName"/> documentation for "M:SharpSvn.SvnClient.GetProperty(SharpSvn.SvnTarget,System.String,System.String@)"]

value
Type: System..::.String %

[Missing <param name="value"/> documentation for "M:SharpSvn.SvnClient.GetProperty(SharpSvn.SvnTarget,System.String,System.String@)"]

Return Value

true if property is set, otherwise false

Exceptions

ExceptionCondition
path is not a valid workingcopy path

See Also