作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在努力使用 ContractNamespace
为我的 C# 枚举生成正确的 WSDL 命名空间,而不是用属性装饰每个类型。
以下代码在“http://www.mynamespace.co.za/”中正确生成了 Person
类型,但由于某些原因,Gender
位于不同的 WSDL namespace “http://schemas.datacontract.org/2004/07/SomeOtherNamespace”中。
我错过了什么?枚举是否需要特殊处理?
[assembly: ContractNamespace("http://www.mynamespace.co.za/", ClrNamespace = "SomeOtherNamespace")]
namespace SomeOtherNamespace
{
public class Person
{
public int Age { get; set; }
public Gender Gender { get; set; }
}
public enum Gender
{
Male,
Female,
Other
}
}
在我的实际代码中,类型存在于外部生成的程序集中。这些类型不能轻易地用自定义属性修饰。 ContractNamespace
如果它也可以用于枚举就完美了...
换句话说,下面的工作,但进入代码生成过程会非常痛苦。
[DataContract(Namespace = "http://www.mynamespace.co.za/")]
public enum Gender
{
[EnumMember]
Male,
[EnumMember]
Female,
[EnumMember]
Other
}
最佳答案
枚举是一种痛苦。您必须修饰枚举以使 ContractNamespace
属性生效。
[DataContract]
public enum Gender
{
[EnumMember]
Male,
[EnumMember]
Female,
[EnumMember]
Other
}
应该会看到您的类型出现在您想要的 WSDL 命名空间中。
关于c# - 在 WCF 中将 ContractNamespace 用于命名空间枚举,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25607594/
我正在努力使用 ContractNamespace 为我的 C# 枚举生成正确的 WSDL 命名空间,而不是用属性装饰每个类型。 以下代码在“http://www.mynamespace.co.za/
在设计我的服务时,我决定自定义出现在生成的 WSDL 中的命名空间。 对于 DataContracts,我遇到了 ContractNamespace属性,这似乎是为每个 DataContract 显式
我是一名优秀的程序员,十分优秀!