Scordo/TS3QueryLib.Net

XML Documentation not showing

FireEmerald opened this issue · 0 comments

For me it seems like the XML documentation has incorrect points where it doesn't work anymore.

For example we have in the TS3QueryLib.Core.Framework.XML the following lines:

<member name="M:TS3QueryLib.Core.Server.QueryRunner.GetClientList(System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
            <summary>
            Displays a list of clients online on a virtual server including their ID, nickname, status flags, etc. The output can
            be modified using several command options. Please note that the output will only contain clients which are
            currently in channels you're able to subscribe to.
            </summary>
            <param name="includeUniqueId">if set to true, the unique id is included</param>
            <param name="includeAwayState">if set to true, the away info is included</param>
            <param name="includeVoiceInfo">if set tot true, the voice info is included</param>
            <param name="includeGroupInfo">if set to true, the group info is included</param>
            <param name="includeClientInfo">if set to true, the client info is included</param>
            <param name="includeTimes">if set to true, time information is included</param>
            <param name="includeIcon">if set to true, icon information is included</param>
            <param name="includeCountry">if set to true, country information is included</param>
        </member>

Visual Studio 2013 doesn't show the XML documentation in the following cases:
not_working_1
not_working_2

But if we add the second boolean to the function the documentation is shown correctly - why?
working