| EventFilterFactoryExceptionTException Method (Regex, String) |
Create a filter for
Error events. Events must match the specified pattern to be filtered.
Examples
Exception<MyException>(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 Exception<TException>(
Regex pattern,
string source = null
)
where TException : Exception
member Exception :
pattern : Regex *
?source : string
(* Defaults:
let _source = defaultArg source null
*)
-> IEventFilterApplier when 'TException : Exception
Parameters
- pattern
- Type: System.Text.RegularExpressionsRegex
The event must match the pattern to be filtered. - source (Optional)
- Type: SystemString
>Optional. The event source.
Type Parameters
- TException
- The type of the exception.
Return Value
Type:
IEventFilterApplierThe new filter
See Also