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