Tianqi Zhang
Tianqi Zhang
Take `M:System.Data.SqlClient.SqlDataReader.GetColumnSchema` for example, you can see in its [ECMAXML file](https://github.com/dotnet/dotnet-api-docs/blob/master/xml/System.Data.SqlClient/SqlDataReader.xml#L606), there's a assembly info tag that does not have any versions at all: ```xml System.Data ```
This time it's when type parameter names are different in generic methods, like: ```xml Method System.Data.Linq 4.0.0.0 S To be added. To be added. To be added. To be added....
When using xml files from [this folder](https://apidrop.visualstudio.com/_git/XMLDevDrop?path=%2Ffeb-24-2017&version=GBmaster&_a=contents) , I found 9 files has empty param names in their `` node, like this one from ``Microsoft.VisualC.StlClr.Generic\ReverseRandomAccessIterator`1.xml`` ```xml To be added. To...
For example, according to [This ECMAXML](https://github.com/dotnet/dotnet-api-docs/blob/master/xml/Microsoft.JScript/IEngine2.xml#L40), `M:Microsoft.JScript.IEngine2.Clone(System.AppDomain)` is only in Microsoft.Jscript 10.0.0.0. However if you search in FrameworkIndex file, you can find this doc id in every .NET Framework version...
If a class is sealed, then you can't inherit it, so its protected members are invisible to users. So we should also hide those members in documentation.
Below code will cause monodoc.Ecma.yyParser.yyException: irrecoverable syntax error: ```csharp EcmaUrlParser EcmaParser = new EcmaUrlParser(); EcmaDesc desc = EcmaParser.Parse("T:System.Threading.Tasks.Task"); ```
if a member takes a parameter that is of private type, this member cannot be invoked by user, so it should not be in ECMAXML.
It takes 2~3 hours for mdoc to generate xmls for 21 frameworks of .Net on my i7+SSD devbox. During this time, mdoc keeps doing disk IO. I assume if mdoc...
### Describe the bug  When loading the page it always get this 403, do you guys know why it references a .js file under /@fs/? ### Reproduction no ###...