1
Vote

SparkSectionHandler Namespaces are immutable

description

The host of the spark view engine may want to programatically add namespaces to be included after the SparkSectionHandler has been pulled in from application config.
 
var settings = (SparkSectionHandler) ConfigurationManager.GetSection("spark");
 
//this is currently illegal
settings.AddNamespace("My.Assembly.Namespace");

comments