Documenting using Sandcastle: Refering to enum value using <see>

Posted by brickner on Stack Overflow See other posts from Stack Overflow or by brickner
Published on 2010-05-01T14:38:32Z Indexed on 2010/05/01 14:47 UTC
Read the original article Hit count: 407

Filed under:
|
|
|
|

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?

© Stack Overflow or respective owner

Related posts about sandcastle

Related posts about xml-documentation