c# - Is there a way to add a web.config value to xml documentation? -


so have web.config value access code behind as:

configurationmanager.appsettings["searchalgorithmenabled"] 

is there way add tag in xml documentation similar this?

/// <summary> /// search algorithm enabled: <%=configurationmanager.appsettings["searchalgorithmenabled"]%>    /// </summary> 

thanks.

xml documentation generated @ compile time , static.

the web.config value can change after application has been deployed.

perhaps need 'settings' or 'config' page shows value dynamically.


Comments

Popular posts from this blog

c++ - Difference between pre and post decrement in recursive function argument -

php - Nothing but 'run(); ' when browsing to my local project, how do I fix this? -

php - How can I echo out this array? -