Using The .NET Serializer To Serialize XML To A .NET Class?

Nov 9, 2010

I have an XML file:

<?xml version="1.0" encoding="UTF-8"?>
<MyProducts>
<Product Name="P1" />

[code].....

View 6 Replies


ADVERTISEMENT

VS 2008 Serialize A Class That Implements An Event That Don't Want To Serialize?

Aug 17, 2010

If a class is serialized and has events fired from it that are handled on a form you get the error "Form1 cannot be serialized" in c# you can use (to work around this):

[Code]....

View 1 Replies

Serialize A Class That Is Not A Custom Of Our Own?

Apr 14, 2010

I need to look at the properties of an object and I cannot instantiate this object in the proper state on my dev machine. I need my client to run some code on her machine, serialize the object in question to disk and then I can analyze the file.[code]...

View 2 Replies

Serialize And Compress A Class?

Jun 10, 2010

what is the fastest way to serialize and compress a class?

what are the consideration to be made when a long list of objects(classes) have to be serialized and compressed one after the other?

View 4 Replies

VS 2008 Trying To Serialize A Class?

Apr 25, 2009

I'm trying to serialize this class:

<System.Serializable()> Public Class Person
Private _FirstName As String
Public Property FirstName() As String

[code]....

View 2 Replies

C# - Serialize An Instance Of The CustomLineCap Class?

Feb 7, 2012

CustomLineCap does not have the SerializableAttribute applied to it. I want to add a property of this type to an object graph that is currently being serialized/deserialized with a BinaryFormatter. I tried switching to XML serialization but it has a bunch of extra requirements and I don't want to fool with that esp. since it's not my code; it's some open source I downloaded. If there's a way to get BinaryFormatter to ignore the property, that might work. I'd rather subclass it; I just don't know if that will work either.

View 1 Replies

Class/structure To Serialize JSON?

Mar 9, 2011

I am trying to figure out a class/struture to handle the following JSON format:

{
"ReturnData": [
{
"id": "msg2DoesNotExistName",

[Code]......

I may or may not have Data for ReturnData and SetValue (one or both at a minimum). I am trying to let the serializer handle most of the formatting without having to check for empty sections and single-item arrays.

View 1 Replies

Serialize A Class Containing A Public Event?

May 14, 2012

how can i serialize a class containing a public event + withevents child classes each containing a public event?

View 3 Replies

Serialize A Class That Contains A Generic List?

Oct 7, 2010

I am trying to serialize a class that contains a generic list, and I am finding it all works with the exception of the generic list property. That is to say the other properties are serialized fine and no error is produced.

I have in the past serialized an arraylist - but I thought it was possible to do a generic list in the same way.

Am I missing something or is it not possible to serialize/deserialize a generic list - I have read mixed comments on this..

The relevant parts of the class that gets serialized is defined as..

<XmlInclude(GetType(cConfigUser)), _
Serializable(), XmlRoot(ElementName:="Config")> _
Public Class cConfig

[Code].....

View 3 Replies

Serialize A Class With A Dictionary To A XML File?

Jul 20, 2011

I want to Serialize and Deserialize a configuration class containing a Dictionary to a XML file.Here is an exemple of what the class look like.

Imports
Public
Class

[code]....

When I try to serialize it with a XmlSerializer I get an exception saying to me that it is impossible to serialise Configuration.Parametres because it implements IDictionary.

DateTime
)
Configuration
System.Collections.Generic

View 2 Replies

Serialize A Part Of A Bigger Class?

Aug 24, 2009

I have a issue in a serialization process. I'm trying to Serialize a part of a bigger class.

I've a Class named MyBigClass with contain many property and method, and some of them may not be Serializable.

And I'm trying to Serialize one property of the MyBigClass class, witch is a SortedList named SubClassXList defined as SortedList(Int32, ClassX)

My problem is when it is time to serialize the SortedList (SubClassXList) a error tell me that a Class (say Class B) could not be Serialized because it is not marked as "Serializable", but the Class B in question have nothing to do with the SubClassXList in question.

The only thing I could see, is that the Serialization method try to also Serialize the Main Class (MyBigClass).

Here is the method that I use to Clone a Object ClassX do have the attribute "Serializable()"

Public Function CloneObject(ByVal pObjectToSerialize As Object) As Object
' Create a memory stream and a formatter.
Dim ms As New IO.MemoryStream()

[Code].....

View 5 Replies

C# - Proxy Pattern - Serialize A Class Into A String

May 10, 2011

I need to be able to serialize a class into a string, and I know of 2 patterns:

1) (normal) Serialization pattern

2) Proxy Serialization pattern

I've read [URL] (the only website in google that talks about the proxy-serialization pattern) and still cant find the advantage or benefit of using this pattern. Could someone explain what exactly is the proxy serialization pattern, or rather exactly what problem does the proxy-serialization pattern solves that the normal-serialization pattern doesn't solve?

View 1 Replies

Winforms - Serialize The Main Class In My VB Solution?

Apr 5, 2011

I'm trying to serialize the main class in my VB solution. I've added the Serializable attribute at the top of my class like so:

[code]...

I'm guessing this is because you can't serialize the form that is attached to the class or something, but I really don't know what I'm doing. Can I serialize all of the objects contained in my Form1 class somehow, without getting this error? I don't want to store any data about the form controls, I just need to save all the objects that I've defined at the top of the Form1 class.

View 1 Replies

.net - Can't Call Serialize() On Instance Of Serializable Singleton Class?

Nov 28, 2011

I have a VB.NET singleton class which implements Serializable:

Imports System.IO
Imports System.Runtime.Serialization

<Serializable()> Public Class CoordinateHistory[code].....

My problem is that I can't actually call .Serialize() on the instance of this class, like all of the examples online show. What am I doing wrong?

View 2 Replies

C# - Serialize A Class Containing An Object (of Any Serializable Type) To XML (Conditon: .NET 1.1)?

Sep 21, 2011

Question: I must get the content of all sessions in a HttpModule, under .NET 1.1. (don't ask my why certain people still use it) I can write the module, I can get the sessions. But... sessions are stored as

[Code]...

View 2 Replies

How To Manage Multiple DAT Files For Serialize Objects Of Same Class

Feb 13, 2010

How best to manage multiple dat files for serializable objects of the same class. If one of my data files goes past a particular size, I want to create a new file. I then loop through both files when I do processing. Is there any easier way to do this and what's the best size to do this at in terms of performance?

View 1 Replies

Example Of A Customer Binary Serializer In .Net?

Apr 14, 2011

So, I want to implement my own binary serialization. I'm looking for some examples to head me in the right direction.

View 2 Replies

Error - Soap Serializer Does Not Support Serializing Generic Types : System.Nullable`1[System.DateTime]

Oct 2, 2009

Im working on my first n-tier application. I am trying to serialize a structure and Im getting an error"Soap Serializer does not support serializing Generic Types : System.Nullable`1[System.DateTime]."Here is the structure that is being serialized
Namespace Structures

<Serializable()> _
Public Structure structAllergy
Public AllergyID As String
Public ProfileID As String

[code]....

The bold line is the line that is throwing the error.

View 1 Replies

Asp.net - 2 Arrays To Serialize?

Jun 23, 2011

I have the following code which works well:

Dim dept As New ArrayList
Dim forename As New ArrayList
objJSONStringBuilder = New StringBuilder()

[Code].....

Eventually, I will want to add more columns, i.e. surname.

View 2 Replies

Asp.net Mvc - How To Serialize Json .NET?

Apr 26, 2012

I am trying to call a rest service..that service returns json object...I am able to send the request but unable to serialize the json...here is the code i am trying

[Code]...

View 1 Replies

C# - How To Serialize Only Some Properties In .Net

Mar 15, 2010

This is for a web project so i have several classes that inherit from Web.UI.

I only want to serialize very particular properties (basically, only local properties)

I'm aware of the XMLIgnore property that can be placed on a property to ignore items, but this won't work in my context since that would require modifying a bunch of stuff that i really don't want to modify (and probably can't).

So how do i tell the xml serializer to ignore everything except for X and Y or tell it to seralize just X and Y?

i could just create my own xml in a string builder or something and if that's the only way, so be it. however i'm looking for a method that will employ the built in XML stuff.

View 3 Replies

DeSerialize And Serialize From XML To XML?

Jan 13, 2011

I am trying to read in an XML document, add a record with a tag for the filename and write to a different XML document.I have been told I must use serialization.

View 2 Replies

How To Serialize A Hashtable

Nov 2, 2009

I have a hash table in which the key is of type Point and the value is of type PieceOfBoard. PieceOfBoard is derived from PictureBox. How do I serialize this hashtable to save it to a file?Do I need to add anything to the PieceOfBoard class?

View 3 Replies

How To Serialize An Object Into XML

Oct 9, 2011

How can I serialize a .net object into XML and then de-serialize it back?

View 3 Replies

Serialize A Listview Using .net?

Nov 7, 2009

how to serialize a listview using vb.net

View 1 Replies

Serialize A Structure To XML?

Feb 27, 2010

I'm writing a test application in order to figure out how to serialize a structure to XML. I can not get the following code to work for me and it's not obvious to me.

The following defines the structures I am attempting to serialize. I think I have the xml decoration correct - but the errors I'm receiving (see below) don't really give me much information.

Imports System.IO
Imports System.Xml.Serialization
Public Module modTestSerialization

[Code]....

View 2 Replies

Serialize A Toolstrip?

Aug 9, 2009

Is it possible to serialize a toolstrip?

View 1 Replies

Transfer Or Serialize Assembly

Sep 4, 2009

I need a way to transfer a compiled assembly from client to the server and be able to store that in the database or in a file in such a way that I can grab those bytes on the "to" side and re-load assembly. Is there a way to do it. To clarify, I have a winforms application that will generate code and compile it based on some metadata. Now I need to be able to transfer this to a web site and store it somehow, but I don't want a dll (because it can be de-compiled). I would then have a "server" program on the to side, that would load this in memory. I could just transfer encrypted source code, but I thought I could just transfer compiled assembly.

View 4 Replies

.net - BinaryFormatter.Serialize With MemoryStream?

Apr 25, 2011

I am having an issue using BinaryFormatter.Serialize. I have this generic extension method to "clone" an object via binary serialization:

[Code]...

This is killing performance. Anything more that about 7 or 8 clones brings the app to a halt. Why would this happen? The USING block ought to ensure the MemoryString is disposed of, right? Shouldn't a new MemoryString be created each time? I would think since the same original Mode object is the source for the serialization, the MemoryString length would be the same.

View 1 Replies

Add XML Comment During Serialize/deserialize?

Mar 31, 2009

I have an XML document that I am deserializing (VB .NET 3.5 Framework), changing some values, and the serializing again. The original document has several XML Comments in it. When I go through all the deserialize/serialize all of the comments are lost. Is there a way to preserve the comments? If not, is there a way to add comments on serialization without having to walk through with the writer and manually add all of the comments back in the appropriate place?

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved