C#-protobuf-net-列出支持的类型

我正在开发一个自定义的ProtoBufFormatter(:MediaTypeFormatter),它能够将自己的类型动态注册到用于序列化/反序列化的RuntimeTypeModel.

为了减少对try {} catch {}块的需求,在将已经支持的类型添加到RuntimeTypeModel之前,最好先过滤掉它们.自述文件仅提供默认情况下受支持的“模糊”列表类型,而Model.GetTypes()方法仅返回手动添加到当前模型的类型列表.

自述文件https://github.com/mgravell/protobuf-net

我正在使用protobuf-net 2.4.0

所以我想知道是否有任何简单的方法来检查当前RuntimeTypeModel是否已支持类型?
目前,我正在使用类似的方法来预过滤类型:

    private bool IsSimpleType(Type type)
    {
        return
            type.IsPrimitive ||
            _additionalSimpleTypes.Contains(type) ||
            Convert.GetTypeCode(type) != TypeCode.Object ||
            (type.IsGenericType && type.GetGenericTypeDefinition() == typeof(Nullable<>) && IsSimpleType(type.GetGenericArguments()[0]));
    }

    private Type[] _additionalSimpleTypes = new Type[]
    {
                typeof(Enum),typeof(String),typeof(String[]),typeof(Decimal),typeof(DateTime),typeof(DateTimeOffset),typeof(TimeSpan),typeof(Guid),typeof(Uri),typeof(Byte),typeof(Byte[]),typeof(Char),typeof(Boolean),typeof(Object),typeof(Version)
    };

    private Type[] _listTypes = new Type[]
    {
        typeof(Enum),typeof(IEnumerable<>),typeof(List<>),typeof(IList<>)
    };
最佳答案
尝试:

 ProtoBuf.Meta.RuntimeTypeModel.Default.CanSerialize(Type type)

相关文章

在项目中使用SharpZipLib压缩文件夹的时候,遇到如果目录较深,则压缩包中的文件夹同样比较深的问题。比...
项目需要,几十万张照片需要计算出每个照片的特征值(调用C++编写的DLL)。 业务流程:选择照片...
var array = new byte[4]; var i = Encoding.UTF8.GetBytes(100.ToString(&quot;x2&quot;));//...
其实很简单,因为Combox的Item是一个K/V的object,那么就可以把它的items转换成IEnumerable&lt;Dic...
把.net4.6安装包打包进安装程序。 关键脚本如下: 头部引用字符串对比库 !include &quot;WordFunc....
项目需求(Winform)可以批量打印某个模板,经过百度和摸索,使用iTextSharp+ZXing.NetʿreeSp...