Click or drag to resize
Akka.NETEventFilterFactoryError Method (Regex, String)
Create a filter for Error events. Events must match the specified pattern to be filtered.
Examples
Error(pattern: new Regex("weird.*message"), source: obj) // filter on pattern and source
Remarks
Please note that filtering on the source being null does NOT work (passing null disables the source filter).

Namespace:  Akka.TestKit
Assembly:  Akka.TestKit (in Akka.TestKit.dll) Version: 1.2.3.129 (1.2.3.129)
Syntax
public IEventFilterApplier Error(
	Regex pattern,
	string source = null
)

Parameters

pattern
Type: System.Text.RegularExpressionsRegex
The event must match the pattern to be filtered.
source (Optional)
Type: SystemString
>Optional. The event source.

Return Value

Type: IEventFilterApplier
The new filter
See Also