BTool.AttFindByTypeValueRsp.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 (AttFindByTypeValueRspCallback == null)
                return;
            AttFindByTypeValueRspCallback(new AttFindByTypeValueRsp.RspInfo()
            {
                success = success,
                header = hciReplies.HciLeExtEvent.Header,
                aTT_FindByTypeValueRsp = hciReplies.HciLeExtEvent.AttFindByTypeValueRsp
            });
        }