Beispiel #1
0
 internal Tablespace(Tablespace basedOn) : base(null)
 {
     if (basedOn == null)
     {
         throw new ArgumentNullException("basedOn");
     }
     Name = basedOn.Name;
     Path = basedOn.Path;
 }
Beispiel #2
0
        public override bool ContentEquals(NamedObject obj)
        {
            if (!base.ContentEquals(obj))
            {
                return(false);
            }
            Tablespace ts = (Tablespace)obj;

            return(Name == ts.Name &&
                   Path == ts.Path);
        }
Beispiel #3
0
 public override void Backup()
 {
     _backup = new Tablespace(this);
 }