81 lines
2.6 KiB
C#
81 lines
2.6 KiB
C#
using System;
|
|
using System.Collections.ObjectModel;
|
|
using System.Reflection;
|
|
|
|
namespace Compat.Runtime.Serialization
|
|
{
|
|
internal static class DataContractSurrogateCaller
|
|
{
|
|
internal static Type GetDataContractType(IDataContractSurrogate surrogate, Type type)
|
|
{
|
|
if (DataContract.GetBuiltInDataContract(type) != null)
|
|
{
|
|
return type;
|
|
}
|
|
|
|
Type dcType = surrogate.GetDataContractType(type);
|
|
if (dcType == null)
|
|
{
|
|
return type;
|
|
}
|
|
|
|
return dcType;
|
|
|
|
}
|
|
internal static object GetObjectToSerialize(IDataContractSurrogate surrogate, object obj, Type objType, Type membertype)
|
|
{
|
|
if (obj == null)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
if (DataContract.GetBuiltInDataContract(objType) != null)
|
|
{
|
|
return obj;
|
|
}
|
|
|
|
return surrogate.GetObjectToSerialize(obj, membertype);
|
|
}
|
|
internal static object GetDeserializedObject(IDataContractSurrogate surrogate, object obj, Type objType, Type memberType)
|
|
{
|
|
if (obj == null)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
if (DataContract.GetBuiltInDataContract(objType) != null)
|
|
{
|
|
return obj;
|
|
}
|
|
|
|
return surrogate.GetDeserializedObject(obj, memberType);
|
|
}
|
|
internal static object GetCustomDataToExport(IDataContractSurrogate surrogate, MemberInfo memberInfo, Type dataContractType)
|
|
{
|
|
return surrogate.GetCustomDataToExport(memberInfo, dataContractType);
|
|
}
|
|
internal static object GetCustomDataToExport(IDataContractSurrogate surrogate, Type clrType, Type dataContractType)
|
|
{
|
|
if (DataContract.GetBuiltInDataContract(clrType) != null)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
return surrogate.GetCustomDataToExport(clrType, dataContractType);
|
|
}
|
|
internal static void GetKnownCustomDataTypes(IDataContractSurrogate surrogate, Collection<Type> customDataTypes)
|
|
{
|
|
surrogate.GetKnownCustomDataTypes(customDataTypes);
|
|
}
|
|
internal static Type GetReferencedTypeOnImport(IDataContractSurrogate surrogate, string typeName, string typeNamespace, object customData)
|
|
{
|
|
if (DataContract.GetBuiltInDataContract(typeName, typeNamespace) != null)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
return surrogate.GetReferencedTypeOnImport(typeName, typeNamespace, customData);
|
|
}
|
|
}
|
|
}
|