all groups > dotnet xml > october 2005 > threads for october 29 - 31, 2005
Filter by week: 1 2 3 4 5
Difference between noditerator.movenext and...
Posted by darrel at 10/31/2005 3:25:00 PM
If I create a node iterator using an xpath expression pointing to a specific
node, this will give me the value of that node:
ni.movenext()
ni.current.tostring
However, this doesn't:
ni.movenext.tostring
why is that? I'm not exactly sure what that second line is actually doing.
It ap... more >>
Getting a specific parent of any node via xpath navigation
Posted by darrel at 10/31/2005 1:26:07 PM
I am storing my site structure as such:
<menuItems>
<menuItem>
<pageID>1</pageID>
</menuItem>
<menuItem>
<pageID>2</pageID>
<menuItem>
<pageID>4</pageID>
<menuItem>
<pageID>5</pageID>
<menuItem>
... more >>
Serialisation - To Display or Not to Display
Posted by dickster at 10/31/2005 6:26:34 AM
A general query
Im serialising a person object with the following member variables
Class Person
Private _forenames As String
Private _surname As String
Private _dob As Date
Private _marital_status As MaritalStatus
'Public Get and Set Properties h... more >>
Matching xsd:enumeration values with spaces in classes
Posted by Sergey Poberezovskiy at 10/30/2005 5:38:08 PM
Hi,
I have a simple enumeration in my schema:
<xs:element name="el_1">
<xs:simpleType>
<xs:restiction base="xs:string">
<xs:enumeration value="value and space 1"/>
<xs:enumeration value="value2 with spaces"/>
...
</xs:restiction>
</xs:simpleType>
<xs:elemen... more >>
Generating the code to turn an XML schema into support for a datas
Posted by Al Christoph at 10/30/2005 10:16:06 AM
Please forgive me if this is the wrong place to post this. The last place I
posted got me a fairly rude response. I guess vb.db people just don't want to
think about XML as database. At any rate, here is what I posted:
I have downloaded the final production version of VS 2005 pro after testin... more >>
need help on how to add comment to xml schema with C#
Posted by comic_rage NO[at]SPAM yahoo.com at 10/30/2005 9:58:08 AM
how do you add a comment line/section to an xml schema xsd file?
like this
<!-- ===============================================================
-->
<!-- =================== My comment line ========================
-->
<!-- =============================================================... more >>
Serializing objects that reference other objects
Posted by cjmumford NO[at]SPAM gmail.com at 10/29/2005 3:42:37 PM
I have a couple of C# objects like this:
class Foo {
}
class Bar {
Foo m_foo;
Foo foo {
get {
return m_foo;
}
set {
m_foo = value;
}
}
}
What I get when these are serialized is a Foo element nested in a Bar
el... more >>
|