MessageHeaders.FindHeader 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
在此集合中查找消息头。
重载
FindHeader(String, String) |
使用标头元素的指定 LocalName 和命名空间 URI 在此集合中查找消息头。 |
FindHeader(String, String, String[]) |
使用标头元素的指定 LocalName、命名空间 URI 和操作者在此集合中查找消息头。 |
FindHeader(String, String)
- Source:
- MessageHeaders.cs
- Source:
- MessageHeaders.cs
- Source:
- MessageHeaders.cs
使用标头元素的指定 LocalName 和命名空间 URI 在此集合中查找消息头。
public:
int FindHeader(System::String ^ name, System::String ^ ns);
public int FindHeader (string name, string ns);
member this.FindHeader : string * string -> int
Public Function FindHeader (name As String, ns As String) As Integer
参数
- name
- String
标头 XML 元素的 LocalName。
- ns
- String
标头 XML 元素的命名空间 URI。
返回
如果找到,为在该集合中的信息标头的索引,如果指定的标头不存在则为 -1。
例外
参数为 null
。
由参数指定的标题存在多次。
适用于
FindHeader(String, String, String[])
- Source:
- MessageHeaders.cs
- Source:
- MessageHeaders.cs
- Source:
- MessageHeaders.cs
使用标头元素的指定 LocalName、命名空间 URI 和操作者在此集合中查找消息头。
public:
int FindHeader(System::String ^ name, System::String ^ ns, ... cli::array <System::String ^> ^ actors);
public int FindHeader (string name, string ns, params string[] actors);
member this.FindHeader : string * string * string[] -> int
Public Function FindHeader (name As String, ns As String, ParamArray actors As String()) As Integer
参数
- name
- String
标头 XML 元素的 LocalName。
- ns
- String
标头 XML 元素的命名空间 URI。
- actors
- String[]
消息头的目标接收方。
返回
如果找到,为在该集合中的信息标头的索引,如果指定的标头不存在则为 -1。
例外
参数为 null
。
由参数指定的标题存在多次。