System.ComponentModel.MarshalByValueComponent.ToString C# (CSharp) Method

ToString() public method

public ToString ( ) : String
return String
        public override String ToString() {
            ISite s = site;

            if (s != null)
                return s.Name + " [" + GetType().FullName + "]";
            else
                return GetType().FullName;
        }
    }