Scordo / TS3QueryLib.Net

This library allows you to query team speak 3 servers using the query port. All queries are implemented type safe and the library is written to work with .Net 3.5 SP1 or higher inluding support for silverlight 3.0 or higher and windows phone 7.1.
BSD 3-Clause "New" or "Revised" License
51 stars 14 forks source link

XML Documentation not showing #6

Closed FireEmerald closed 7 years ago

FireEmerald commented 10 years ago

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