Spring.Objects.Factory.Support.RootWebObjectDefinition.RootWebObjectDefinition C# (CSharp) Method

RootWebObjectDefinition() public method

Creates a new instance of the Spring.Objects.Factory.Support.RootWebObjectDefinition class

Deep copy constructor.

public RootWebObjectDefinition ( IObjectDefinition other ) : System
other IObjectDefinition /// The definition that is to be copied. ///
return System
        public RootWebObjectDefinition(IObjectDefinition other) : base(other)
        {
            if (other is IWebObjectDefinition)
            {
//                this._scope = ((IWebObjectDefinition) other).Scope;
                this._pageName = ((IWebObjectDefinition) other).PageName;
            }
        }

Same methods

RootWebObjectDefinition::RootWebObjectDefinition ( Type type, Spring.Objects.Factory.Config.ConstructorArgumentValues arguments, MutablePropertyValues properties ) : System
RootWebObjectDefinition::RootWebObjectDefinition ( string typeName, Spring.Objects.Factory.Config.ConstructorArgumentValues arguments, MutablePropertyValues properties ) : System
RootWebObjectDefinition::RootWebObjectDefinition ( string pageName, MutablePropertyValues properties ) : System