Sdl.Web.Common.Models.MvcData.ToString C# (CSharp) Method

ToString() public method

Returns a string that represents the current object.
public ToString ( ) : string
return string
        public override string ToString()
        {
            // TODO: what about the other properties?
            return string.Format("{0}:{1}:{2}", AreaName, ControllerName, ViewName);
        }