| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- //
- // System.Data.ObjectSpaces.Query.Parent
- //
- //
- // Author:
- // Richard Thombs ([email protected])
- //
- #if NET_1_2
- using System;
- namespace System.Data.ObjectSpaces.Query
- {
- [MonoTODO()]
- public class Parent : Context
- {
- [MonoTODO()]
- public Parent(Context sContext) : base()
- {
- throw new NotImplementedException();
- }
- [MonoTODO()]
- public override object Clone()
- {
- throw new NotImplementedException();
- }
- [MonoTODO()]
- public override bool IsArithmetic()
- {
- throw new NotImplementedException();
- }
- [MonoTODO()]
- public override bool IsBoolean()
- {
- throw new NotImplementedException();
- }
- [MonoTODO()]
- public override bool IsFilter()
- {
- throw new NotImplementedException();
- }
- [MonoTODO()]
- public int Level
- {
- get { throw new NotImplementedException(); }
- }
- [MonoTODO()]
- public override NodeType NodeType
- {
- get { throw new NotImplementedException(); }
- }
- [MonoTODO()]
- public Context Source
- {
- get { throw new NotImplementedException(); }
- set { throw new NotImplementedException(); }
- }
- }
- }
- #endif
|