I am trying to read a Microsoft defined ConfigurationSection:
Microsoft.ApplicationServer.Caching.DataCacheClientSection
but the type is internal so I cannot access it in the conventional way.
i.e.
var dataCacheClientSection = (DataCacheClientSection)ConfigurationManager.GetSection("dataCacheClient");
I know I can use reflection but do I have any other options?