Click or drag to resize
Akka.NETIEventFilterApplierMute Method
Overload List
  NameDescription
Public methodCode exampleMute
Prevents events from being logged from now on. To allow events to be logged again, call Unmute on the returned object.
Examples
var filter = EventFilter.Debug().Mute();
...
filter.Unmute();
You may also use it like this:
Examples
using(EventFilter.Debug().Mute())
{
   ...
}
Public methodMute(Action)
Executes action and prevent events from being logged during the execution.
Public methodMuteT(FuncT)
Executes func and prevent events from being logged during the execution.
Top
See Also