[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 SetProperty(
	string target,
	string propertyName,
	string value,
	SvnSetPropertyArgs args
)
Visual Basic (Declaration)
Public Function SetProperty ( _
	target As String, _
	propertyName As String, _
	value As String, _
	args As SvnSetPropertyArgs _
) As Boolean
Visual C++
public:
bool SetProperty(
	String^ target, 
	String^ propertyName, 
	String^ value, 
	SvnSetPropertyArgs^ args
)

Parameters

target
Type: System..::.String

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

propertyName
Type: System..::.String

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

value
Type: System..::.String

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

args
Type: SharpSvn..::.SvnSetPropertyArgs

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

Return Value

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

Remarks

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

See Also