BTool.AttHandleValueNotification.SendRspCallback C# (CSharp) Method

SendRspCallback() private method

private SendRspCallback ( HCIReplies hciReplies, bool success ) : void
hciReplies HCIReplies
success bool
return void
        private void SendRspCallback(HCIReplies hciReplies, bool success)
        {
            if (AttHandleValueNotificationCallback == null)
                return;
            AttHandleValueNotificationCallback(new AttHandleValueNotification.RspInfo()
            {
                success = success,
                header = hciReplies.HciLeExtEvent.Header,
                aTT_HandleValueNotification = hciReplies.HciLeExtEvent.AttHandleValueNotification
            });
        }