private void InvokeHandler()
 {
     foreach (var item in handler.GetInvocationList())
     {
         item?.DynamicInvoke();
     }
 }