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
Post a Comment