MessageDescriptionCollection.FindAll(String) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
查找并返回集合中其消息具有指定操作的所有消息说明。
public:
System::Collections::ObjectModel::Collection<System::ServiceModel::Description::MessageDescription ^> ^ FindAll(System::String ^ action);
public System.Collections.ObjectModel.Collection<System.ServiceModel.Description.MessageDescription> FindAll (string action);
member this.FindAll : string -> System.Collections.ObjectModel.Collection<System.ServiceModel.Description.MessageDescription>
Public Function FindAll (action As String) As Collection(Of MessageDescription)
参数
- action
- String
正在查找的消息的操作。
返回
从当前集合返回的包含集合消息说明的 MessageDescriptionCollection,这些消息说明的消息具有指定的 action
。 如果找不到匹配的 MessageDescription 对象,则返回空集合。
注解
如果您需要在集合中查找具有指定 MessageDescription 的第一条 action
实例,则请使用 Find(String) 方法。