Example #1
0
        public OAProperties(NodeProperties target)
        {
            Utilities.ArgumentNotNull("target", target);

            this.target = target;
            this.AddPropertiesFromType(target.GetType());
        }
Example #2
0
        internal OAProperties(NodeProperties target)
        {
            System.Diagnostics.Debug.Assert(target != null);

            this.target = target;
            this.AddPropertiesFromType(target.GetType());
        }
Example #3
0
        public OAProperties(NodeProperties target)
        {
            System.Diagnostics.Debug.Assert(target != null);

            this.target = target;
            this.AddPropertiesFromType(target.GetType());
        }
Example #4
0
        public OAProperties(NodeProperties target)
        {
            System.Diagnostics.Debug.Assert(target != null);

            if (target == null)
            {
                throw new ArgumentNullException("target");
            }

            this.target = target;
            this.AddPropertiesFromType(target.GetType());
        }
Example #5
0
        public OAProperties(NodeProperties target)
        {
            System.Diagnostics.Debug.Assert(target != null);

            if (target == null)
            {
                throw new ArgumentNullException("target");
            }

            this.target = target;
            this.AddPropertiesFromType(target.GetType());
        }
Example #6
0
        public OAProperties(NodeProperties target)
        {
            Debug.Assert(target != null);

            if (target == null)
            {
                throw new ArgumentNullException("target");
            }

            Target = target;
            AddPropertiesFromType(target.GetType());
        }
Example #7
0
        public OAProperties(NodeProperties target) {
            Utilities.ArgumentNotNull("target", target);

            this.target = target;
            this.AddPropertiesFromType(target.GetType());
        }