// Token: 0x0600030B RID: 779 RVA: 0x0000872F File Offset: 0x0000692F
 internal static void BroadcastUnloadedSynchronously(DependencyObject rootDO, bool isLoaded)
 {
     if (isLoaded)
     {
         BroadcastEventHelper.BroadcastEvent(rootDO, FrameworkElement.UnloadedEvent);
     }
 }
 internal static void BroadcastLoadedSynchronously(DependencyObject rootDO, bool isLoaded)
 {
     // It is possible that the loaded broadcast for a parent caused you to be loaded before
     // your broadcast item got dequeued. In that case simply ignore the operation
     if (!isLoaded)
     {
         // Broadcast the Loaded event
         BroadcastEventHelper.BroadcastEvent(rootDO, FrameworkElement.LoadedEvent);
     }
 }