Interface IValueProvider
Represents a value provider.
Namespace: Telerik.Windows.Persistence.Services
Assembly: Telerik.Windows.Controls.dll
Syntax
public interface IValueProvider : IPersistenceProvider
Methods
ProvideValue(Object)
Provides the string representation of an object.
Declaration
string ProvideValue(object context)
Parameters
System.Object
context
The context. |
Returns
System.String
Returns the string value. |
RestoreValue(Object, String)
Restores the object from the saved string value.
Declaration
void RestoreValue(object context, string savedValue)
Parameters
System.Object
context
The context. |
System.String
savedValue
The saved value. |