When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted.

Namespace: MonoSoftware.MonoX
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
public override bool ShouldSerializeValue(
	Object component
)
Visual Basic
Public Overrides Function ShouldSerializeValue ( 
	component As Object
) As Boolean
Visual C++
public:
virtual bool ShouldSerializeValue(
	Object^ component
) override
F#
abstract ShouldSerializeValue : 
        component : Object -> bool 
override ShouldSerializeValue : 
        component : Object -> bool 

Parameters

component
Type: System..::..Object
The component with the property to be examined for persistence.

Return Value

Type: Boolean
true if the property should be persisted; otherwise, false.

See Also