System.Configuration.ConfigurationSection 在类库下不可用

发布于 2024-08-30 13:41:47 字数 486 浏览 8 评论 0原文

我正在将一项功能从 App_Code 目录迁移到一个单独的项目,该项目将构建一个由我的 Web 应用程序引用的类库。 App_Code 部分中的一个类继承了 System.Configuration.ConfigurationSection,如下所示:

Imports System.Configuration
Imports System.Web.Configuration
Imports Microsoft.VisualBasic

Namespace P10.WebStore

#Region "WebStore Section"
    Public Class WebStoreSection
        Inherits ConfigurationSection

我绝对无法让项目将 ConfigurationSection 识别为类。我在谷歌上搜索到的关于这个类的信息没有提到必须做任何特殊的事情才能使用它。是因为这是一个类库而不是 .exe 或其他东西吗?我很困惑。

I'm migrating a piece of functionality from my App_Code directory to a separate project that's going to build a class library to be referenced by my web app. One of my classes in the App_Code piece inherits form System.Configuration.ConfigurationSection, like so:

Imports System.Configuration
Imports System.Web.Configuration
Imports Microsoft.VisualBasic

Namespace P10.WebStore

#Region "WebStore Section"
    Public Class WebStoreSection
        Inherits ConfigurationSection

I absolutely cannot get the project to recognize ConfigurationSection as a class. Nothing I google about this class mentions having to do anything special to use it. Is it because this is a class library and not an .exe or somethign? I'm stumped.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梨涡 2024-09-06 13:41:47

类型 ConfigurationSection 是在程序集System.Configuration 中找到。您是否在类库项目中添加了对该程序集的引用?

The type ConfigurationSection is found in the assembly System.Configuration. Did you add a reference to that assembly in your class library project?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文