Last change
on this file since 427 was 424, checked in by dai, 17 years ago |
System.Xml関連のクラスを仮実装してみた(まだ満足な機能レベルではない…)。
|
File size:
410 bytes
|
Line | |
---|
1 | Namespace System
|
---|
2 | Namespace Xml
|
---|
3 |
|
---|
4 | /*!
|
---|
5 | @brief 属性を表します。
|
---|
6 | */
|
---|
7 | Class XmlAttribute
|
---|
8 | Inherits XmlNode
|
---|
9 |
|
---|
10 | Public
|
---|
11 | Sub XmlAttribute( prefix As String, localName As String, namespaceURI As String, doc As XmlDocument )
|
---|
12 | XmlNode( prefix, localName, namespaceURI, doc )
|
---|
13 | End Sub
|
---|
14 | End Class
|
---|
15 |
|
---|
16 | TypeDef XmlAttributeCollection = System.Collections.Generic.List<XmlAttribute>
|
---|
17 |
|
---|
18 |
|
---|
19 | End Namespace
|
---|
20 | End Namespace
|
---|
Note:
See
TracBrowser
for help on using the repository browser.