| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- //
- // System.Data.ObjectSpaces.Query.SpanProperty
- //
- //
- // Author:
- // Richard Thombs ([email protected])
- //
- #if NET_1_2
- using System;
- using System.Xml;
- namespace System.Data.ObjectSpaces.Query
- {
- [MonoTODO()]
- public class SpanProperty
- {
- public SpanProperty parent;
- [MonoTODO()]
- public SpanProperty(string name)
- {
- throw new NotImplementedException();
- }
- [MonoTODO()]
- public SpanProperty(string name,SpanPropertyCollection subSpan)
- {
- throw new NotImplementedException();
- }
- [MonoTODO()]
- public string ToXmlString()
- {
- throw new NotImplementedException();
- }
- [MonoTODO()]
- public void WriteXml(XmlWriter xmlw)
- {
- throw new NotImplementedException();
- }
- [MonoTODO()]
- public string FullName
- {
- get { throw new NotImplementedException(); }
- }
- [MonoTODO()]
- public string Name
- {
- get { throw new NotImplementedException(); }
- set { throw new NotImplementedException(); }
- }
- [MonoTODO()]
- public SpanProperty Owner
- {
- get { throw new NotImplementedException(); }
- }
- [MonoTODO()]
- public SpanPropertyCollection SubSpan
- {
- get { throw new NotImplementedException(); }
- }
- }
- }
- #endif
|