Click here to Skip to main content
15,914,594 members
Home / Discussions / C#
   

C#

 
GeneralRe: A general question about objects Pin
Heath Stewart20-May-04 5:25
protectorHeath Stewart20-May-04 5:25 
GeneralRe: A general question about objects Pin
Grimolfr20-May-04 5:52
Grimolfr20-May-04 5:52 
GeneralRe: A general question about objects Pin
Heath Stewart20-May-04 5:57
protectorHeath Stewart20-May-04 5:57 
GeneralOne more simple question if someone have time. Pin
Christer Claesson20-May-04 5:18
Christer Claesson20-May-04 5:18 
Generaldll that is seen by multiple exe's Pin
jspano20-May-04 2:21
jspano20-May-04 2:21 
GeneralRe: dll that is seen by multiple exe's Pin
Heath Stewart20-May-04 3:01
protectorHeath Stewart20-May-04 3:01 
GeneralRe: dll that is seen by multiple exe's Pin
jspano20-May-04 14:31
jspano20-May-04 14:31 
GeneralXmlSerializer Pin
Sean Rock20-May-04 1:45
Sean Rock20-May-04 1:45 
Sorry if this has been asked before: i have a class that i want to move across the network as xml. using the xmlserializer class converts the class to xml however there is some data produced in the final xml that i would rather not have, for example, the first line <?xml yada yada yada ?> i don't need for my purposes and would rather not have this automatically produced. Can i prevent the xmlserializer class from inserting this first line? Also the class that is being serialized to xml ends up with some schema data which again, i don't need for my purposes, Example::

<?xml version="1.0" encoding="utf-16"?>
<OrderRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Control>2.0</Control>
<Header>
<SenderID>1123123</SenderID>
<ReceiverID>39393</ReceiverID>
</Header>
</OrderRequest>

so basically i want the output from the serialization to be like this:

<OrderRequest>
<Control>2.0</Control>
<Header>
<SenderID>1123123</SenderID>
<ReceiverID>9393939</ReceiverID>
</Header>
</OrderRequest>

any help advice is greatly appreciated!!

GeneralRe: XmlSerializer Pin
Heath Stewart20-May-04 2:54
protectorHeath Stewart20-May-04 2:54 
GeneralRe: XmlSerializer Pin
Sean Rock20-May-04 3:02
Sean Rock20-May-04 3:02 
GeneralRe: XmlSerializer Pin
Heath Stewart20-May-04 3:26
protectorHeath Stewart20-May-04 3:26 
GeneralRe: XmlSerializer Pin
Sean Rock20-May-04 3:37
Sean Rock20-May-04 3:37 
GeneralRe: XmlSerializer Pin
Dave Kreskowiak20-May-04 3:48
mveDave Kreskowiak20-May-04 3:48 
GeneralRe: XmlSerializer Pin
Sean Rock20-May-04 3:51
Sean Rock20-May-04 3:51 
Generalconvert a field to checkbox sql reporting services Pin
robmays20-May-04 1:11
robmays20-May-04 1:11 
GeneralDBase file access in C# Pin
IJay20-May-04 1:04
IJay20-May-04 1:04 
GeneralRe: DBase file access in C# Pin
Anthony_Yio20-May-04 1:11
Anthony_Yio20-May-04 1:11 
GeneralRe: DBase file access in C# Pin
sreejith ss nair20-May-04 2:18
sreejith ss nair20-May-04 2:18 
GeneralRe: DBase file access in C# Pin
IJay20-May-04 2:20
IJay20-May-04 2:20 
GeneralRe: DBase file access in C# Pin
Heath Stewart20-May-04 2:50
protectorHeath Stewart20-May-04 2:50 
GeneralRe: DBase file access in C# Pin
Anthony_Yio20-May-04 15:43
Anthony_Yio20-May-04 15:43 
GeneralRe: DBase file access in C# Pin
IJay20-May-04 22:11
IJay20-May-04 22:11 
GeneralOpening any file Pin
Dylan van Heerden19-May-04 23:38
Dylan van Heerden19-May-04 23:38 
GeneralRe: Opening any file Pin
the last free name20-May-04 0:55
the last free name20-May-04 0:55 
GeneralRe: Opening any file Pin
Dylan van Heerden20-May-04 1:07
Dylan van Heerden20-May-04 1:07 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.