Meine app.config Datei ist wie folgt:ConfigurationManager.GetSection Gibt Fehler „Typ konnte nicht geladen werden .... von der Montage ...“
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section name="ProcessConfiguration" type="Configuration.ProcessConfigurationSection, Configuration" />
</configSections>
<ProcessConfiguration>
<processes>
<process name="Process1" />
</processes>
</ProcessConfiguration>
</configuration>
ich folgende (separat) Klassen müssen holen Sie sich die Konfiguration:
namespace Configuration
{
using System.Configuration;
public class ProcessesConfigurationSection : ConfigurationSection
{
[ConfigurationProperty("processes", IsDefaultCollection = false)]
[ConfigurationCollection(typeof(ProcessCollection))]
public ProcessCollection Processes
{
get
{
return (ProcessCollection)base["processes"];
}
}
}
}
namespace Configuration
{
using System.Configuration;
public class ProcessCollection : ConfigurationElementCollection
{
public ProcessConfig this[int index]
{
get
{
return (ProcessConfig)BaseGet(index);
}
set
{
BaseAdd(index, value);
}
}
protected override object GetElementKey(ConfigurationElement element)
{
return ((ProcessConfig)element).Name;
}
protected override ConfigurationElement CreateNewElement()
{
return new ProcessConfig();
}
}
}
namespace Configuration
{
using System.Configuration;
public class ProcessConfig : ConfigurationElement
{
[ConfigurationProperty("name", IsRequired = true, IsKey = true)]
public string Name
{
get
{
return (string)this["name"];
}
set
{
this["name"] = value;
}
}
}
}
jedoch, wenn ich diese Codezeile getroffen:
var processConfigurationSection = ConfigurationManager.GetSection("ProcessConfiguration") as ProcessesConfigurationSection;
Ich erhalte den Fehler in dem es heißt:
ist ein Fehler aufgetreten den Konfigurationsabschnitt Handler für ProcessConfiguration erstellen: Typ konnte nicht ‚Configuration.ProcessConfigurationSection‘ aus Assembly ‚Konfiguration‘ laden.
Ich bin völlig ratlos, wenn mir jemand helfen kann, würde ich es wirklich zu schätzen wissen.
Sie wollen dies mit dem [Fusion-Protokoll-Viewer.] (Http://msdn.microsoft.com/en-us/library/e74a18c4.aspx) Debuggen Sie einfach sicherstellen, dass es als Admin ausgeführt wird, schalten Sie es ein das Protokoll und Neustart vor dem Debuggen. Sie werden sehen, wo die CLR nach der Assembly sucht und welche Version und von wo aus ermittelt wird, warum sie nicht gefunden wird, wenn das der Fall ist. – Will
Wie lautet der Name der DLL, die Sie erstellen? –
Ist Ihr Typ 'ProcessesConfigurationSection' in der Eingabeassembly definiert? –