.Net Tips – use [field:NonSerialized] to stop serializing your event handlers

Yan Cui

I help clients go faster for less using serverless technologies.

In C#, when you define an event in your class, e.g.:

image

the event handlers will be serialized along with other properties, etc.

This is because under the hood, the compiler translates your event into the following, as can be seen through JetBrain’s dotPeek decompiler:

image

Since the generated EventHandler is not marked with the [NonSerialized] attribute there’s no way for the serializer to know that it should be ignored during the serialization process.

Solution 1 : implement event explicitly

One solution to this is to implement the event explicitly, so you end up with something along the line of:

image

Solution 2 : use [field:NonSerialized]

A much better solution would be to use the [NonSerialized] attribute on the event, and more specifically, you want to apply it to the private EventHandler instance that the compiler generates for you. Applying the [NonSerialized] attribute on the event generates a compiler error telling you that it’s only valid on field declarations:

image

image

So instead, if you prefix the attribute with the ‘field’ keyword everything will work as you’d expect:

image

Closing thoughts…

On a related note, you may have noticed that my event declaration assigns an empty handler to the event, this is to remove the need for null checking before invoking an event (which as you can imagine requires even more work to make thread-safe). There are other techniques (see @BlkRabbitCoder’s post on raising events safely and efficiently here for more details) to deal with this common problem.

In the case of a class that has to be serialized, this technique won’t work if the event handlers are not serialized as part of the object, because by the time it’s deserialized the event handler will be null.

So instead, courtesy of @BlkRabbitCoder, here’re two simple extension methods that encapsulates the code necessary to safely (prevents NullReferenceException) invoke event handlers in a thread-safe manner:

image

Further reading

Here are some more blog posts that go in to more detail about some intricacies with events in .Net:

Jon Skeet – Delegates and Events

Eric Lippert – Events and Races

Safely and Efficiently raising Events


Whenever you’re ready, here are 3 ways I can help you:

  1. Production-Ready Serverless: Join 20+ AWS Heroes & Community Builders and 1000+ other students in levelling up your serverless game.
  2. Consulting: If you want to improve feature velocity, reduce costs, and make your systems more scalable, secure, and resilient, then let’s work together and make it happen.
  3. Join my FREE Community on Skool, where you can ask for help, share your success stories and hang out with me and other like-minded people without all the negativity from social media.

 

1 thought on “.Net Tips – use [field:NonSerialized] to stop serializing your event handlers”

  1. THANK YOU! I checked a bunch of other articles, all of which failed to mention the “field” part of the [field:UnSerialized] option. You made my day! :)

Leave a Comment

Your email address will not be published. Required fields are marked *