Aquí es mi app.configConfigurationManager.GetSection devuelve null
<configuration>
<configSections>
<section name="procedureList" type="System.Configuration.NameValueSectionHandler, System, Version=4.0.30319, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
</configSections>
<procedureList>
<add key="NAS.spBusObjGetLineProd" value="@area='Melt Shop';@endDt=?date?;@dayonly=1;@obj='Melt Shop Business Objective" />
<add key="NAS.spBusObjGetLineProd" value="@area='Cold Mill';@endDt=?date?;@dayonly=1;@obj='Cold Mill Business Objective" />
</procedureList>
<appSettings>
<add key="Connstr" value=""/>
<add key="Userid" value=""/>
<add key="Timeout" value=""/>
</appSettings>
</configuration>
Pero cuando llamo en el código, me estoy poniendo un nulo volver
public void samplemethod()
{
NameValueCollection nvc = ConfigurationManager.GetSection("procedureList") as NameValueCollection;
string[] keys = nvc.AllKeys;
}
Le agradecería cualquier ayuda señalando lo que he hecho mal
lo estás copiando incorrectamente. Publicaré un ejemplo a continuación junto con un enlace que puedes usar como referencia – MethodMan
Si la operación de conversión 'as' falla, devuelve un valor nulo. Sin embargo, el archivo de configuración indica que el tipo de sección es 'NameValueSectionHandler'; debería estar creando este tipo al llamar a GetSection(). –
incluso cuando cambio el tipo a NameValueSectionHandler, sigo recibiendo un nulo – edepperson