1

当我为我的服务创建代理时,一些额外的参数被添加为 XmlIgnoreAttribute。例如:

接口方法契约声明:

[OperationContract]
void AddToList(int integerToAdd);

方法实现:

public void AddToList(int integerToAdd) {
    intList.Add(integerToAdd);
}

现在,当我动态地为我的服务生成代理时,这个方法实际上是这样的:

/// <remarks/>
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/IService1/AddToList", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
public void AddToList(int integerToAdd, [System.Xml.Serialization.XmlIgnoreAttribute()] bool integerToAddSpecified)
{
    this.Invoke("AddToList", new object[] {integerToAdd, integerToAddSpecified});
}

如果我有此参数的 ParameterInfo 对象,如何检查此参数是否已标记为 XmlIgnoreAttribute?

如果这不是检查这些自动生成的参数的好方法,那么还有另一种(更好的)方法来检查它们吗?

奖励:是否存在生成非布尔类型并将其标记为 XmlIgnoreAttribute 的情况?

4

1 回答 1

1

我假设您会使用ParameterInfo.GetCustomAttributes()

ParameterInfo secondParam = ..
object[] attribs = 
          secondParam.GetCustomAttributes(typeof(XmlIgnoreAttribute), false);
//the second bool param is ignored. See the docs.
//check if => attribs has anything..

(1)我不确定您为什么要检查这些参数,所以不确定它是否好/更好。(2)不确定第二个问题。我假设这是来自 VS 代码生成(svcutil?)也许一些设计这个的 MSFT 可能更了解。

于 2013-02-07T16:13:02.407 回答