ActionMessageFilter(String[]) コンストラクター

定義

検査する一連のアクションを使用して、このクラスの新しいインスタンスを初期化します。

public:
 ActionMessageFilter(... cli::array <System::String ^> ^ actions);
public ActionMessageFilter (params string[] actions);
new System.ServiceModel.Dispatcher.ActionMessageFilter : string[] -> System.ServiceModel.Dispatcher.ActionMessageFilter
Public Sub New (ParamArray actions As String())

パラメーター

actions
String[]

フィルターが検査を行う一連のアクションを格納した Array

例外

actionsnullです。

actions 配列が空です。

ActionMessageFilter myActFltr = new ActionMessageFilter("1st Action", "2nd Action");
Dim myActFltr As ActionMessageFilter = New ActionMessageFilter("1st Action", "2nd Action")

注釈

actions を設定するために提供された ActionMessageFilter の配列に重複するアクションが含まれる場合は、重複したアクションが削除され、1 つのアクションだけが ActionMessageFilter に追加されます。 ReadOnlyCollection<T> に格納されている actionsActionMessageFilter は、Actions プロパティの使用によりアクセスされ、ActionMessageFilter オブジェクトがインスタンス化された後では変更できません。

適用対象