internal void OnWlanReason(WlanNotificationData notifyData, WlanReasonCode reasonCode) { WlanReasonNotification?.Invoke(notifyData, reasonCode); if (queueEvents) { var queuedEvent = new WlanReasonNotificationData { notifyData = notifyData, reasonCode = reasonCode }; EnqueueEvent(queuedEvent); } }
private void WlanInterface_WlanReasonNotification(Wlan.WlanNotificationData notifyData, Wlan.WlanReasonCode reasonCode) { WlanReasonNotification?.Invoke(notifyData, reasonCode); }