Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7697637
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T22:03:50+00:00 2026-05-31T22:03:50+00:00

I use reflection find all the Classes in my project that Inherit from Packet.Base

  • 0

I use reflection find all the Classes in my project that Inherit from Packet.Base

Each of these classes has ProtoBuf attributes applied.

I’ve just experienced Protobuf.net Exception – Timeout while inspecting metadata my project and want to implement the PrepareSerializer without having to go through and add all the different class types in there.

Is there a simple way that I can dynamically prepare the classes given that I have the type from reflection without needing to call

ProtoBuf.Serializer.PrepareSerializer(Of Instruction)()
ProtoBuf.Serializer.PrepareSerializer(Of NoOperation)()

or adding a

Public MustOverride Sub Prepare()

to the base class and then in each class

Public Overrides Sub Prepare()
    Serializer.PrepareSerializer(Of TimeSynchronise)()
End Sub

This is the loading mechanism i’m using, a pretty simple reflection load.

Public Class CompatiblePackets
    Inherits Dictionary(Of Packet.PacketType, Base)

    Public Sub New()
        Dim theAssembly As Assembly = Assembly.GetExecutingAssembly
        For Each t As Type In theAssembly.GetTypes
            If t.BaseType Is GetType(Base) Then
                Dim p As Base = CType(t.Assembly.CreateInstance(t.FullName), Base)
                Me.Add(p.PacketTypeIndicator, p)
                End Try
            End If
        Next
    End Sub

    public sub Prepare
        ProtoBuf.Serializer.PrepareSerializer(t)()
    end sub 
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T22:03:51+00:00Added an answer on May 31, 2026 at 10:03 pm

    Yes, you can call that without generics:

    RuntimeTypeModel.Default[type].CompileInPlace();
    

    where:

    • RuntimeTypeModel.Default is the default type-model, which is what the Serializer.* methods use (v2 supports parallel independent type-models)
    • the [type] indexer performs and implicit Add if it is missing, using the default behaviours (attributes) – and thus does most of the metadata analysis
    • the CompileInPlace() does IL optimisation for the type

    You can also try increasing RuntimeTypeModel.Default.MetadataTimeoutMilliseconds slightly.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In WPF, how do I use reflection to find all classes in a project?
I use reflector to decompile a asp.net dll, after that I find the bug
I'm trying to use reflection to get a property from a class. Here is
I need to use reflection to get the binding value in a control that
If I wrote this code: typeof(myType).TypeHandle Would it use reflection? How much different from:
We know that behind the scenes, the ASP.NET MVC framework will use reflection to
I have a problem with reflection. I need to find the type that instantiates
How can I access the currently opened project's types(classes) from a Visual Studio add-in(be
I have two delegates. I want to use reflection to load an assembly/classes and
I'd like to somehow find all DynamicMethods in my current context, consider that I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.