| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286 |
- //
- // System.Data.ObjectSpaces.Schema.ObjectSchema.cs
- //
- // Author:
- // Mark Easton ([email protected])
- // Tim Coleman ([email protected])
- //
- // (C) BLiNK Software Ltd. http://www.blinksoftware.co.uk
- // Copyright (C) Tim Coleman, 2003
- //
- #if NET_1_2
- using System.Data.Mapping;
- using System.IO;
- using System.Xml;
- using System.Xml.Schema;
- namespace System.Data.ObjectSpaces.Schema {
- public class ObjectSchema : ICloneable, IDomainSchema
- {
- #region Fields
- string name;
- #endregion // Fields
- #region Constructors
- [MonoTODO]
- public ObjectSchema ()
- {
- }
- [MonoTODO]
- public ObjectSchema (string url)
- {
- }
- #endregion // Constructors
- #region Properties
- [MonoTODO]
- public SchemaClassCollection Classes {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public ExtendedPropertyCollection ExtendedProperties {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- MappingDataSourceType IDomainSchema.DomainType {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO ("Verify")]
- public string Name {
- get { return name; }
- set { name = value; }
- }
- [MonoTODO]
- public string Namespace {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public ObjectRelationshipCollection Relationships {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public string SourceUri {
- get { throw new NotImplementedException (); }
- }
- #endregion // Properties
- #region Methods
- [MonoTODO]
- public Object Clone ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public string GetSchemaXml ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- IDomainConstraint IDomainSchema.GetDomainConstraint (string select, IXmlNamespaceResolver namespaces)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- IDomainStructure IDomainSchema.GetDomainStructure (string select, IXmlNamespaceResolver namespaces)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- void IDomainSchema.Read (string url)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- void IDomainSchema.Read (string url, ValidationEventHandler validationEventHandler)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- void IDomainSchema.Read (XmlReader reader)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- void IDomainSchema.Read (XmlReader reader, ValidationEventHandler validationEventHandler)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- void IDomainSchema.ReadExtensions (XmlReader reader)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- void IDomainSchema.ReadExtensions (XmlReader reader, ValidationEventHandler validationEventHandler)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- void IDomainSchema.Write (string schemaLocation)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- void IDomainSchema.Write (string schemaLocation, IXmlNamespaceResolver namespaceResolver)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- void IDomainSchema.Write (XmlWriter writer)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- void IDomainSchema.Write (XmlWriter writer, IXmlNamespaceResolver namespaceResolver)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- void IDomainSchema.Write (Stream stream)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- void IDomainSchema.Write (Stream stream, IXmlNamespaceResolver namespaceResolver)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- void IDomainSchema.Write (TextWriter writer)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- void IDomainSchema.Write (TextWriter writer, IXmlNamespaceResolver namespaceResolver)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- void IDomainSchema.WriteExtensions (XmlWriter reader)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- void IDomainSchema.WriteExtensions (XmlWriter reader, IXmlNamespaceResolver namespaceResolver)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void Read (string url)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void Read (string url, ValidationEventHandler validationEventHandler)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void Read (XmlReader reader)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void Read (XmlReader reader, ValidationEventHandler validationEventHandler)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void Reset ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void Write (string schemaLocation)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void Write (string schemaLocation, IXmlNamespaceResolver namespaceResolver)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void Write (XmlWriter writer)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void Write (XmlWriter writer, IXmlNamespaceResolver namespaceResolver)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void Write (Stream stream)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void Write (Stream stream, IXmlNamespaceResolver namespaceResolver)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void Write (TextWriter writer)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void Write (TextWriter writer, IXmlNamespaceResolver namespaceResolver)
- {
- throw new NotImplementedException ();
- }
- #endregion // Methods
- }
- }
- #endif // NET_1_2
|