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

Email notification in google apps script -

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

javascript - IE11 incompatibility with jQuery's 'readonly'? -