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


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

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

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

Compress An Image Using .net?

Dec 7, 2009

How can i compress an image using vb.net?

View 2 Replies

Way To Compress Image

Jul 21, 2009

How to compress an image? because i am capturing a screenshot. but my problem is sometimes the image size is too large. how can I compress the image?

View 4 Replies

Way To Compress My Project

Feb 15, 2012

When i'm working on my project,many times it show the message something like this "...out of memory" so can any one help me what should i do?

Should I compress my project and make it smaller in size?

View 8 Replies

Compress Decompress String?

May 23, 2010

How do I compress/decompress a string in VB.NET ?I am trying to send long string through the Network and need them to be as small as possible before sending.

View 3 Replies

Compress A Directory In One File?

Sep 15, 2011

I have tried to compress a directory in one file. Any idea how? I have been able to compress individual files, but no clue how to do it in one file

View 1 Replies

Compress A Folder To *.zip File?

Dec 29, 2009

I need a simple code to compress a folder to *.zip file silently without modules or adding project .... etc.

View 18 Replies

Compress Files In Program?

Jun 15, 2009

I'm making a presentation program. It's a bit like PowerPoint, but less complicated and for a different purpose.

All files used in the presentation (like images, texts and sounds) should be put into a single 'file-package'. This package should later be opened by my program, which should be able to use the files from the package. (Just like PowerPoint creates a single file with all images and sounds included, which can be loaded in PowerPoint on a different computer.)

Actual compression for the file is not really needed. It could be sort of like a tar-file.

View 1 Replies

Compress Files Using 7zip

Oct 6, 2010

VB.NET 2003 or 2005 application program. i was trying to create an application program to compress some files using 7zip. when application program runs, need to browse and select the files need to be compressed and mention the name of the zip file and compress the file in that folder. i'm getting examples only in C#.

View 4 Replies

How To Compress Folder From Textbox

Feb 26, 2009

How would I compress a folder from a text box becasue what I have at the moment is just returning a value of true
Dim compres As IO.Compression.CompressionMode
TextBox1.Text = IO.Compression.CompressionMode.Compress = IO.Compression.CompressionMode.Compress = 1
And I don't understand how to use the compression.

View 7 Replies

How To Compress Multiple Files Into One

Nov 21, 2010

I want to have a backup feature which takes about 7 txt files and compresses/packs them into one file. Then if required at a later stage I can unpack all 7 files from the packed file. I do not need any compression as such just to make one file from 7, then 7 from from that one, if you understand what I mean. I have read there are some native libraries in .NET Framework 2.0 called DeflateStream and GZipStream. Can these be used?

View 3 Replies

Compress Audio File Wmv With Net Libraries To Wma Or Mp3?

Feb 14, 2011

how do you compress audio file wmv with net libraries to wma MP3?

View 4 Replies

Compress / Encrypt Parts Of A File?

Aug 5, 2009

How can i encrypt or decrypt only a part of a file? I try, and i keep getting an error message that says that the stream might be corrupt. By the way, it is ok to convert the text to a byte array using the system.text.encoding.ascii.getbytes() right? The reason i want to encrypt/compress only a part of a file is because i don't want to encrypt or compress the file header. That way the program can gather info about whether the file is compressed or encrypted.

View 1 Replies

Compress A File Open On Another Application?

Jul 31, 2011

I have a program I made in vb.net express 2008 that used java.utils.zip to compress my work files to a Zip archive that I ran occassionaly to have a backup. I worked fine, but with net framework 4 and vb.net 2010 it doesn't work. So I modified it to use sharpziplib and it works fine if all files on the filter list in the folder are closed, but if I have a file open in OpenOffice writer, my program can't access it and won't create the zip file. The file that usually stays open all the time is my TODO list, that is updated several times a day , so usually gets printed, and updated( adding or deleting entries), without closing it.

[Code]...

View 14 Replies

Compress And Send Project By Email

Feb 22, 2012

i just want to compress and send my project by email. but gmail wont let me because some file types are .exe i change it to .txt but i'm still having trouble. its a vb.net form app project.

View 5 Replies







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