SDKDocGenerator.Writers.ConstructorWriter.GetTitle C# (CSharp) Method

GetTitle() protected method

protected GetTitle ( ) : string
return string
        protected override string GetTitle()
        {
            var par = FormatParameters(this._constructorInfo.GetParameters());
            if (string.IsNullOrEmpty(par))
                return string.Format("{0} {1}", this._constructorInfo.DeclaringType.Name, GetMemberType());

            return string.Format("{0} {1} ({2})", this._constructorInfo.DeclaringType.GetDisplayName(false), 
                                                  GetMemberType(),
                                                  FormatParameters(this._constructorInfo.GetParameters()));
        }