In the below example, how to change the local QNARESULTHERE.json file with the name of the qnaResult?
public async Task ITSupportIntent(IDialogContext context, LuisResult result)
{
var qnaResult = itKB.GetAnswer(result.Query);
if (qnaResult.StartsWith("CARD"))
{
var reply = context.MakeMessage();
try
{
string json = File.ReadAllText(HttpContext.Current.Request.MapPath("~\\AdaptiveCards\\QNARESULTHERE.json"));
Sorry this question is all over the place. Context: The actual variable i needed was the QnAAnswer i believe as referenced here: Integrate QnA Maker and LUIS to distribute your knowledge base