このセクションと同じ実行可能アセンブリ(IVITerminal.exe
)でカスタム構成セクションクラスを定義しました。実行可能ファイルで定義されたカスタム構成セクション
<configSections>
....
<section name="myconfig" type="IVITermital.Configuration.Section, IVITerminal"/>
....
</configSections>
....
<myconfig>....</myconfig>
をしかし、私はセクション読みたいとき:App.configファイルでは、私は持っている
static void Main(string[] args)
{
var s = ConfigurationManager.GetSection("myconfig") as Section;
を私はタイプSystem.Configuration.ConfigurationErrorsException
の例外Could not load type 'IVITermital.Configuration.Section' from assembly 'IVITerminal'.
を得ました。
同じexeで設定セクションを定義することはできますか?
それは、クラス名のタイプミスだったありがとう – shibormot