Show / Hide Table of Contents

Interface ITypeJsonSerializer<TValue>

Generic interface for JSON serializer of a given value type.

Namespace: Kephas.Serialization.ServiceStack.Text
Assembly: Kephas.Serialization.ServiceStack.Text.dll
Syntax
[SingletonAppServiceContract(ContractType = typeof(ITypeJsonSerializer))]
public interface ITypeJsonSerializer<TValue> : ITypeJsonSerializer
Type Parameters
Name Description
TValue

Type of the value.

Methods

| Improve this Doc View Source

RawDeserialize(String)

Raw implementation of value deserialization.

Declaration
TValue RawDeserialize(string serializedValue)
Parameters
Type Name Description
System.String serializedValue

The serialized value.

Returns
Type Description
TValue

A TValue.

| Improve this Doc View Source

RawSerialize(TValue)

Raw implementation of value serialization.

Declaration
string RawSerialize(TValue value)
Parameters
Type Name Description
TValue value

The value.

Returns
Type Description
System.String

A string.

Extension Methods

DynamicObjectExtensions.SetPropertyValue(Object, String, Object)
DynamicObjectExtensions.TrySetPropertyValue(Object, String, Object)
DynamicObjectExtensions.GetPropertyValue(Object, String)
DynamicObjectExtensions.TryGetPropertyValue(Object, String, out Object)
DynamicObjectExtensions.GetRuntimeTypeInfo(Object)
DynamicObjectExtensions.ToDynamic(Object)
DynamicObjectExtensions.ToExpando(Object)
BehaviorValue.ToBehaviorValue<TValue>(TValue)
CollectionExtensions.AddRange<T, TItem>(T, IEnumerable<TItem>)
LoggingExtensions.GetLogger(Object, IContext)
TypeExtensions.GetAbstractType(Object)
TypeExtensions.GetAbstractTypeInfo(Object)
ReflectionHelper.GetTypeInfo(Object)
EntityEntryExtensions.TryGetAttachedEntityEntry(Object)
  • Improve this Doc
  • View Source
Back to top Generated by DocFX