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

Sets the specified property on the specfied path to value

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

Syntax

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

Parameters

target
Type: SharpSvn..::.SvnTarget

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

propertyName
Type: System..::.String

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

args
Type: SharpSvn..::.SvnGetPropertyArgs

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

properties
Type: SharpSvn..::.SvnTargetPropertyCollection %

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

Return Value

[Missing <returns> documentation for M:SharpSvn.SvnClient.GetProperty(SharpSvn.SvnTarget,System.String,SharpSvn.SvnGetPropertyArgs,SharpSvn.SvnTargetPropertyCollection@)]

Remarks

Use DeleteProperty(String, String, SvnSetPropertyArgs) to remove an existing property

See Also