Comments
1 comment
-
Thanks for reporting this.
As you say, the code for constructing the link inside reflector simply generates the url from the class name. So, for example, for RuntimeBinderException it is generating
http://msdn2.microsoft.com/en-us/librar ... rexception
For classes that are documented on .NET 4, the name seems to have an additional (VS.100), so it would need to generate
http://msdn2.microsoft.com/en-us/librar ... ion(vs.100)
I've logged this as RP-690 - we should manage the url according to the framework version of the assembly.
Currently, the only thing you can do is manually add the (vs.100) yourself, converting the url to .../system.servicemodel.web.aspnetcacheprofileattribute(VS.100).aspx
Add comment
Please sign in to leave a comment.
http://msdn.microsoft.com/en-us/library ... eattribute
this gets converted to
http://msdn.microsoft.com/en-us/library ... ibute.aspx
The correct link is:
http://msdn.microsoft.com/en-us/library ... ute(VS.100).aspx
Is there a setting I need to change in Reflector to make the link work?