基础和派生 DataContract 中具有相同名称的属性,导致自动生成的服务引用出错

发布于 2024-11-08 04:56:33 字数 772 浏览 0 评论 0原文

好吧,情况是这样的:

DataContract FileRouterConfig 派生自 RouterConfig(也是一个 DataContract)。

两者都有一个属性 SendType。 在 RouterConfig (基础)中:

public string SendType
{
    get { return sendType; }
    set { sendType = value; }
}

在 FileRouterConfig (派生)中:

    [DataMember(Name = "SendType")]
    public new string SendType
    {
        get { return base.SendType; }
        set { base.SendType = value; }
    }

现在另一个使用自动生成的服务引用的项目(涉及上面的 FileRouterConfig),无法在自动生成的 reference.cs 中构建并出现此错误:

警告错误:“FileRouterConfig.SendType”隐藏 继承成员 'RouterConfig.SendType'。使用新的 关键字(如果有意隐藏)。

如何避免这种情况,而不更改 DataMember 名称属性,这会违反现有的数据契约? 请注意,我已经在 FileRouterConfig 类中使用了 new 关键字。

Alright, here's the situation:

DataContract FileRouterConfig is derived from RouterConfig (also a DataContract).

Both have a property SendType.
In RouterConfig (base):

public string SendType
{
    get { return sendType; }
    set { sendType = value; }
}

In FileRouterConfig (derived):

    [DataMember(Name = "SendType")]
    public new string SendType
    {
        get { return base.SendType; }
        set { base.SendType = value; }
    }

Now another project which uses automatically generated service reference (which involves FileRouterConfig above), fails to build with this error in auto generated reference.cs:

Warning as Error: 'FileRouterConfig.SendType' hides
inherited member
'RouterConfig.SendType'. Use the new
keyword if hiding was intended.

How can I avoid this, without changing the DataMember name attribute which would violate existing data contract??
Notice that I've already used new keyword in the FileRouterConfig class.

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文