基础和派生 DataContract 中具有相同名称的属性,导致自动生成的服务引用出错
好吧,情况是这样的:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论