This event occurs after all connector's activity ends.
connector.Begin += new EventHandler(connector_Begin);
This event is mostly useful for stopping logging functionality previously enabled at Begin event.
Samples of usage:
void connector_End(object sender, EventArgs e) { //stop logging Log.Enabled = false; }