Where can I find source code for e.g. XmlSiteMapProvider and other "built-in" stuff for ASP.NET (3.5)?
3 Answers
I'm not sure whether ASP.NET is included, but some parts of the .NET framework are linked to Source Server - you can then step into the framework code, almost as if it were your own. Here's an article to get you started:
Comments
You can never find the source code of inbuilt controls due to the fact that they are compiled into assemblies that are part framework.
Why do you need the source?
1 Comment
Deniz Dogan
In this particular case to find out how to avoid stack overflow in my custom site map provider. I was hoping that XmlSiteMapProvider could give me some insight, but I realized it is a subclass of StaticSiteMapProvider while I need something which is an immediate subclass of SiteMapProvider and doesn't depend on StaticSiteMapProvdier.