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

ToString() public method

A System.String that represents the current System.Object.
public ToString ( ) : string
return string
        public override string ToString()
        {
            return string.Format(
                CultureInfo.InvariantCulture,
                "Root web object with class [{0}] defined in {1}",
                (IsPage ? PageName : ObjectTypeName),
                ResourceDescription);
        }
    }