system.configuration

    0熱度

    1回答

    我正在經歷和替換應用中的以前的配置策略,以便它更有意義,但它會在應用程序加載時拋出「無法識別的屬性」異常。 這裏是我的配置部分 using System.Configuration; namespace MyApplication { public class MyConfigurationSection : ConfigurationSection { [C

    9熱度

    1回答

    我使用app.config文件保存憑據,當我嘗試找回它們,我得到了TypeLoadException如下: 未能加載類型「System.Configuration.DictionarySectionHandler」 從裝配'System.Configuration,版本= 4.0.0.0,文化=中立, 公鑰= b03f5f7f11d50a3a' 這是一個.NET 4.5的項目,我設置了System

    20熱度

    2回答

    我的app.config文件如下: <?xml version="1.0" encoding="utf-8" ?> <configuration> <configSections> <section name="ProcessConfiguration" type="Configuration.ProcessConfigurationSection, Configurati

    0熱度

    1回答

    我正在使用Configuration Manager將設置存儲在C#應用程序中。我有一些個人設置,我有一個可變的設置數組。 XML配置看起來是這樣的: <?xml version="1.0"?> <configuration> <startup> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"

    0熱度

    2回答

    我使用System.Configuration在我的組裝 但只要我實現的getter/setter方法 上的代碼 被灰色的頂部System.Configuration鏈接(在裝配不使用) 配置&配置管理器得到下劃線 紅色是藍綠色的。錯誤消息是: 找到類型和/或命名空間名稱配置不能 。 (你是否缺少...等) 奇怪的是,在我的測試程序中,相同的代碼 運行沒有錯誤。有什麼我需要 更改屬性或程序集本身到

    11熱度

    3回答

    我有一個執行FTP操作的c#.Net控制檯應用程序。 目前,我在自定義配置部分中指定了設置,例如 <?xml version="1.0" encoding="utf-8" ?> <configuration> <configSections> <section name="ftpConfiguration" type="FileTransferHelper.FtpLibrar

    4熱度

    1回答

    配置節有一個很大的問題,並回答here,說明如何創建自定義配置部分,它能夠解析以下形式的配置爲.NET對象: <?xml version="1.0" encoding="utf-8" ?> <configuration> <configSections> <section name="CustomConfigSection" type="ConfigTest.CustomCo

    0熱度

    1回答

    我對Angular 2相當陌生,我試圖完全理解如何使用外部庫,特別是Bootstrap模態。 繼https://www.npmjs.com/package/ng2-bootstrap-modal的指示,我跑了以下內容: npm install ng2-bootstrap-modal 在我的index.html,我覈實,我有以下幾點: <!--Bootstrap CSS--> <lin

    0熱度

    1回答

    假設我有一個帶有app.config文件的C#類庫項目,並且我將它引用到一個具有web.config文件的ASP.NET項目。假設我在我的web.configAppSettings中有一個密鑰,名爲SmtpServerHostname。如果我在我的引用類庫中也需要SmtpServerHostname,那我應該如何處理配置文件的配置?具體來說, 如果我沒有定義在我的類庫SmtpServerHostn

    0熱度

    1回答

    比方說,我有一個的ConfigurationProperty這樣定義的: [ConfigurationProperty("TheProp")] public double TheProp { get{//some code} set{//some code} } 如何檢查,如果這的ConfigurationProperty有值與否?在這種情況下,DefaultValu