Changes the value of a property with the specified name.

Namespace: BlueCieloECM.InnoCielo.Meridian.Client
Assembly: BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 1.4.0.0 (1.4.40.0)

Syntax

C#
public void SetPropertyValue(
	string propertySetName,
	string propertyDefName,
	Object value
)
Visual Basic
Public Sub SetPropertyValue ( _
	propertySetName As String, _
	propertyDefName As String, _
	value As Object _
)
Visual C++
public:
void SetPropertyValue(
	String^ propertySetName, 
	String^ propertyDefName, 
	Object^ value
)

Parameters

propertySetName
Type: System..::..String
The name of the property set to which the property belongs.
propertyDefName
Type: System..::..String
The name of the property.
value
Type: System..::..Object
The value of the property.

Remarks

The changed value is not immediately stored to the server: the value is cached until the current operation is completed.

See Also