MessageDescriptionCollection.FindAll(String) 方法

定义

查找并返回集合中其消息具有指定操作的所有消息说明。

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

正在查找的消息的操作。

返回

Collection<MessageDescription>

从当前集合返回的包含集合消息说明的 MessageDescriptionCollection,这些消息说明的消息具有指定的 action。 如果找不到匹配的 MessageDescription 对象,则返回空集合。

注解

如果您需要在集合中查找具有指定 MessageDescription 的第一条 action 实例,则请使用 Find(String) 方法。

适用于