Tagged Questions
7
votes
1answer
1k views
Precompile XmlSerializers with XmlAttributeOverrides
When constructing XmlSerializer instances in .NET, assemblies for serializing and deserializing the specified type are generated dynamically. This is a time-consuming process. The sgen.exe tool from ...
3
votes
3answers
401 views
What is the most efficient way to Deserialze an XML file
Aloha,
I have a 8MB XML file that I wish to deserialize.
I'm using this code:
public static T Deserialize<T>(string xml)
{
TextReader reader = new StringReader(xml);
Type type = ...
2
votes
1answer
280 views
.XmlSerializers.dll how to use it - confused by examples over the Internet
I'm quite newbie to C#. I've started to use SGEN generated XmlSerializers.dll and I'm really confused right now. Despite that I cannot find any true step by step tutorial how to use it properly I'm ...
2
votes
1answer
1k views
SGEN XMLSerializer - should be .XMLSerializers.dll added as a reference to the current project or to the GAC?
I do some stuff with XMLSerializer class. Like a most of beginners I face with performance issue on app start. I read a lot of blogs, articles and finally use SGEN tool. Now performance looks to be ok ...
2
votes
2answers
1k views
Pre-generating XmlSerializers using Sgen and ILMerge. Trouble with arrays
I use XmlSerializer extensively and rather than allowing .NET to generate the necessary serialization assemblies at runtime, I'd like to generate these assemblies ahead of time and bundle them with my ...
2
votes
2answers
1k views
Why won't Visual Studio 2005 generate an Xml Serialization assembly?
Why isn't Visual Studio 2005 generating a serialization setting when I set the project setting "Generate Serialization Assembly" to "On"?
1
vote
2answers
196 views
Generating an Xml Serialization assembly for a custom XmlSerializer
I have methods in my class for serializing/deserializing using a different XML structure than what would be produced with the default serializer. The methods create an XmlSerializer for my type but ...
1
vote
1answer
195 views
Even using sgen on my service class still results in agonizingly slow constructor
So I'm trying to speed up our applications startup times -- and I've identified a major bottleneck to work on. Each of our webservice client classes takes forever and a day to instantiate. Some ...
1
vote
1answer
314 views
Bug in Sgen.exe
It seems that sgen.exe could not generate generic type XmlSerializer, right?
My genereic type:
[Serializable]
[XmlRoot(ElementName = "Masterx")]
public class Masterx<T> where T : class, new()
...
1
vote
1answer
1k views
SGEN, InternalsVisibleTo and assembly signing
I'm trying to do something a bit unusual...
I have this class Foo :
public class Foo
{
public Foo(string name)
{
this.Name = name;
}
internal Foo()
{
}
public ...
1
vote
2answers
769 views
XmlSerializer, sgen.exe and generics
I have a generic type:
public class Packet<T> where T : IContent
{
private int id;
public int Id { get { return this.id; } }
private T content;
public T Content { get { return ...
0
votes
1answer
96 views
SGEN error reflecting type
I have implemented the change mentioned in the accepted answer of Generating an Xml Serialization assembly as part of my build
<Target Name="AfterBuild" ...
0
votes
1answer
49 views
How does sgen.exe decide which types to generate serializers for?
You can use sgen.exe to create serialization assemblies ahead of time rather than have them created on the fly.
But how does it decide what types to make serializers for? I've tried to switch to ...
0
votes
1answer
358 views
Serialize() not using .XmlSerializers.dll produced with Sgen
I have a sgen step in my .NET 3.5 library, producing a correct XYZ.XmlSerializers.dll in the output directory.
Still having poor serialization performance, I discovered that .NET was still invoking a ...