Documenting using Sandcastle: Refering to enum value using <see>
- by brickner
I'm using Sandcastle 2.4.10520 and Sandcastle Help File Builder 1.8.0 to generate a .chm help file.
In my documentation, I'm using <see> tags.
If I try to refer an enum like <see cref="NumberStyles"/> it works perfectly.
If I try to refer an enum value like <see cref="NumberStyles.AllowTrailingWhite"/> I get a link in the documentation file, but the link leads me to an MSDN Page not found
I don't get any warnings - my xml documentation is correct.
I've noticed that MSDN pages that refer to an enum value also have a Page not found link.
For example: UInt64.Parse Method (String, NumberStyles, IFormatProvider) refers to NumberStyles.AllowHexSpecifier and this leads to another MSDN Page not found.
Should I refer to the enum instead of the enum value?
What should I do to refer an enum? Is it even possible?