ActionMessageFilter(String[]) Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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.