Interface ICacheSerializer
Represents a serializer used during cache operations.
Namespace: IRM.Caching
Assembly: IRM.dll
Syntax
public interface ICacheSerializer
Methods
FromString<T>(String)
Converts the specified string to an object.
Declaration
T FromString<T>(string value)
Parameters
String
value
The serialized string to deserialize. |
Returns
T
The deserialized object. |
Type Parameters
T
The type of object. |
ToString(Object)
Converts the specified object to a string.
Declaration
string ToString(object o)
Parameters
Object
o
The object to serialize. |
Returns
String
The serialized string of the |