ActionMessageFilter(String[]) コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
検査する一連のアクションを使用して、このクラスの新しいインスタンスを初期化します。
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
が null
です。
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> に格納されている actions
の ActionMessageFilter は、Actions プロパティの使用によりアクセスされ、ActionMessageFilter オブジェクトがインスタンス化された後では変更できません。