コード例 #1
0
 public static void ProfileEvent(object sender, ProfileEventEnum profileEventType, GenericPanelBinding genericPanelBinding, DCSFPProfile dcsfpProfile)
 {
     OnProfileEvent?.Invoke(sender, new ProfileEventArgs {
         PanelBinding = genericPanelBinding, ProfileEventType = profileEventType, DCSProfile = dcsfpProfile
     });
 }
コード例 #2
0
 public static bool OnProfileEventSubscribed()
 {
     return(OnProfileEvent != null && OnProfileEvent.GetInvocationList().Length > 0);
 }