ActionMessageFilter(String[]) Constructor

Definition

Initializes a new instance of this class with the set of actions for which it tests.

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

Parameters

actions
String[]

The Array that contains the set of actions for which the filter tests.

Exceptions

actions is null.

The actions array is empty.

Examples

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

Remarks

If the array of actions provided to populate the ActionMessageFilter contains duplicate actions, the duplicates are removed and only one of them is added to the ActionMessageFilter. The ReadOnlyCollection<T> of actions contained in the ActionMessageFilter is accessed by the Actions property and cannot be modified after the ActionMessageFilter object is instantiated.

Applies to