Add project files.
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Reflection;
|
||||
using System.Collections.ObjectModel;
|
||||
|
||||
namespace Compat.Runtime.Serialization
|
||||
{
|
||||
public interface IDataContractSurrogate
|
||||
{
|
||||
Type GetDataContractType(Type type);
|
||||
object GetObjectToSerialize(object obj, Type targetType);
|
||||
object GetDeserializedObject(object obj, Type targetType);
|
||||
object GetCustomDataToExport(MemberInfo memberInfo, Type dataContractType);
|
||||
object GetCustomDataToExport(Type clrType, Type dataContractType);
|
||||
void GetKnownCustomDataTypes(Collection<Type> customDataTypes);
|
||||
Type GetReferencedTypeOnImport(string typeName, string typeNamespace, object customData);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user