Interface
IValueProvider

Represents a value provider.

Definition

Namespace:Telerik.Windows.Persistence.Services

Assembly:Telerik.Windows.Controls.dll

Syntax:

cs-api-definition
public interface IValueProvider : IPersistenceProvider

Methods

ProvideValue(object)

Provides the string representation of an object.

Declaration

cs-api-definition
string ProvideValue(object context)

Parameters

context

object

The context.

Returns

string

Returns the string value.

RestoreValue(object, string)

Restores the object from the saved string value.

Declaration

cs-api-definition
void RestoreValue(object context, string savedValue)

Parameters

context

object

The context.

savedValue

string

The saved value.