共用方式為


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")

備註

如果提供來填入 actionsActionMessageFilter 陣列包含了重複的動作,這時重複動作會被移除,而只留下其中一個動作來加入至 ActionMessageFilter。 包含在 ReadOnlyCollection<T> 中之 actionsActionMessageFilter 會被 Actions 屬性存取,而且無法在 ActionMessageFilter 物件產生之後進行修改。

適用於