When to change the Generate Serialization Assembly value?

38,812

In order to serialize classes/structs, serialization assemblies need to be generated. This can happen at compiletime or runtime. Sgen.exe is used to generate serialization assemblies at compiletime; Visual Studio can optionally automate this process, as you have discovered.

  • Off: Default for Debug configurations (thanks, @Alexandru Lache). Do not generate serialization assemblies at compiletime. Serialization assemblies will be generated each time the application runs, according to MSDN:

    When the XML Serializer Generator is not used, a XmlSerializer generates serialization code and a serialization assembly for each type every time an application is run. To improve the performance of XML serialization startup, use the Sgen.exe tool to generate those assemblies the assemblies in advance. These assemblies can then be deployed with the application.

  • On: Use Sgen.exe to generate a serialization assembly at compiletime. This saves startup time, but increases deployment size.
  • Auto: Default for Release configurations. Officially, only generates assembly if XmlSerializer is used in your code, per MSDN (thanks, @L-Three). In my tests, this didn't always work, so I recommend explicitly setting it to On if you are using XmlSerializer.

So, my answer would be this: if you are concerned about startup time, and you use the Serializable attribute even once, set the option to On. If you are more concerned about deployment size, change it to Off. I never leave it on Auto anymore, because I don't trust it. Like I said, it seems to be the same as Off, but I wouldn't count on it.

Edit: I'm definitely having some trouble differentiating between Off and Auto. The difference isn't clearly defined anywhere. I'd stick with On if you use the Serializable attribute at all, and Off if you don't. I wouldn't take deployment size or startup time into account. I just seem to run into fewer serialization-related bugs if I stick to that rule.

Update:

After a review of the sources mentioned, I believe "startup" refers to the first time an XmlSerializer is used on any given type, not initial application launch. I can't be sure; it's a bit ambiguous.

Share:
38,812
John Isaiah Carmona
Author by

John Isaiah Carmona

Experienced Software Engineer with a demonstrated history of working in the insurance industry. Skilledin C#, Databases, Ruby on Rails, and Web Services.

Updated on July 09, 2022

Comments

  • John Isaiah Carmona
    John Isaiah Carmona almost 2 years

    I have a client winform application that connects to the local network server of WCF. There has a performance issue on the client side and I searched for the solution and found this post.

    It says there that:

    This sounds like the serialization assemblies being created at runtime. Try changing the settings of the Serialization Assembly dropdown at the bottom of the Build pane of the properties window for the project.

    My question is When to change the Generate Serialization Assembly value and what value should I change it into to improve the performance of my client side application?

    My codes is in C#, framework 4, build in VS2010Pro.

  • John Isaiah Carmona
    John Isaiah Carmona over 12 years
    Thanks Zenexer. It really help.
  • Groo
    Groo almost 11 years
    One remark: the [Serializable] attribute is related to binary serialization, not XML serialization. So, you should consider using this if you are using the XmlSerializer class and you are concerned about time needed to (de)serialize the first object instance.
  • Zenexer
    Zenexer almost 11 years
    @Groo No, SerializableAttribute is for all forms of serialization, not just binary serialization. See MSDN.
  • Groo
    Groo almost 11 years
    When you say "all forms of serialization", I believe you are talking about different serialization formatters used by the .NET runtime serialization. But the XmlSerializer class is not related to .NET runtime serialization, it is the only class which uses these generated serialization assemblies (runtime serialization and WCF data contracts do not use them), and it has nothing to do with the [Serializable] attribute. A class only needs to be public and have a public parameterless constructor for XmlSerializer to work.
  • Zenexer
    Zenexer almost 11 years
    @Groo, I am not talking about .NET runtime serialization. I am talking about serialization, period. All serializable types should be documented with a SerializableAttribute attribute. For some forms of serialization, as you pointed out, they must be marked.
  • Groo
    Groo almost 11 years
    I strongly disagree with this "should be" convention you mention. Where did you read that? If public members of a class can be serialized, it doesn't mean it is safe to serialize it with runtime serialization. You are only creating a potential security and stability risk, allowing unwanted serialization of its private fields. See Drawbacks of marking a class as Serializable, Why classes are not Serializable by default?, Disadvantage of making class Serializable.
  • Groo
    Groo almost 11 years
    The point of my comment was to indicate that 1. SerializableAttribute is not used by XmlSerializer, and 2. only XmlSerializer uses serialization assemblies, and you answer is misguiding. So, again, this part of your answer: "[if] you use the Serializable attribute even once, set the option to On", is wrong. Serializable does not mean you are using XmlSerializer, but it should mean you checked that your classes can be safely serialized with runtime serialization. And runtime serialization does not use generated serialization assemblies.
  • Zenexer
    Zenexer almost 11 years
    @Groo SerializableAttribute is an attribute. It doesn't do anything. It is much like a permission. IFormatter implementations use it to determine whether an object has permission to be serialized. XML serialization is very common. It does not serialize private fields, unlike other forms of serialization, so it is not a security risk, if an application is designed properly. Generally, providing this option is a good idea in modern code. Granted, if you are sure that XML won't be used, the serialization assembly is useless, but SerializableAttribute should still be used.
  • Groo
    Groo almost 11 years
    You again state that "SerializableAttribute should still be used", with no explanation at all. Why? Why would you "permit" serialization of private members for classes you are not going to serialize? Would you leave your car open with a message "permission to enter"? Sure, you didn't steal your own car, you merely gave permission for others to do it. Maybe you'll decide that cars "should" be left open. But the question is why? There are known issues with doing so, and I see no reason why you would still insist on doing it and act like it's some sort of a guideline.
  • Zenexer
    Zenexer almost 11 years
    @Groo I think you misunderstood. I meant that you should use SerializableAttribute on all classes that are going to be serialized, or rather, that should logically be serializable. It certainly shouldn't be on all types--that would be silly.
  • Alexandru Lache
    Alexandru Lache over 10 years
    Please note Auto on DEBUG is Off and on RELEASE is On.
  • L-Four
    L-Four almost 10 years
    "By default, this option is set to Auto, which specifies that serialization assemblies be generated only if you have used XmlSerializer to encode types in your code to XML." (msdn.microsoft.com/en-us/library/kb4wyys2.aspx)
  • Zenexer
    Zenexer almost 10 years
    @Groo Looking back on this, the answer is that you should use [Serializable] because without it, Sgen doesn't know which types to include in the serialization assembly.
  • Zenexer
    Zenexer almost 10 years
    @AlexandruLache Thanks, added.
  • Zenexer
    Zenexer almost 10 years
    @L-Three Thanks, added.
  • Groo
    Groo almost 10 years
    @Zenexer: No, that is still incorrect. XmlSerializer is completely unrelated to the [Serializable] attribute. Sgen generates serialization code for all types included in an assembly, regardless of the attribute. If you really want, you can use the /t switch to specify the exact type, but the default behavior is to create code for all types. I don't really understand why you decided to edit your answer with incorrect information. MSDN clearly describes how Sgen works.
  • Zenexer
    Zenexer almost 10 years
    @Groo I noted that I wasn't sure; I didn't see anything definitive on MSDN about which types it operates on. Regardless, it's still a good practice to mark serializable classes as such. Some classes simply cannot be serialized (reasonably), even with XmlSerializer.
  • Ron
    Ron about 9 years
    Was having a build issue and came across this which helped. But for clarification, I think from the following two links it is clear that XmlSerializer and [Serializable] are not related (SerializableAttribute and Attributes for Xml Serialization). Based on this conversation, I would have to agree that [Serializable] should only be used if absolutely necessary like storing the objects in Session or Cache.
  • beppe9000
    beppe9000 about 8 years
    Do WCF data contracts use serialization assemblies?