Основной выпуск
Привет, ребята, я относительно новичок в использовании адаптивных карт в Microsoft Bot Framework. Я столкнулся с проблемой, когда я не знаю, как получить значение из DateInput после того, как пользователь выбирает желаемую дату. Ниже мой код в настоящее время:
public async Task StartAsync(IDialogContext context)
{
string pIdentifier = serviceFactory.ProfileService.GetPatientIdentifier(nric);
string response = serviceFactory.DentalAppointmentService.GetSlotSearchDates(nric,apptId,caseNumber, institutionCode, pIdentifier);
string[] split = response.Split(' ');
DateTime earliestStartDate = DateTime.ParseExact(split[0], "yyyy'-'MM'-'dd'T'HH':'mm':'ss", CultureInfo.InvariantCulture);
DateTime latestEndDate = DateTime.ParseExact(split[1], "yyyy'-'MM'-'dd'T'HH':'mm':'ss", CultureInfo.InvariantCulture);
await context.PostAsync("Your appointment can only be rescheduled within this period " + earliestStartDate.ToShortDateString() + " to " + latestEndDate.ToShortDateString());
AdaptiveCard card = new AdaptiveCard();
card.Body.Add(new TextBlock()
{
Text = "Enter new Date",
Size = TextSize.Large,
Weight = TextWeight.Bolder
});
DateInput input = new DateInput()
{
Id = "Date",
Placeholder = "New Date"
};
card.Body.Add(input);
card.Actions.Add(new SubmitAction()
{
Title = "Submit"
});
Attachment cardAttachment = new Attachment()
{
ContentType = AdaptiveCard.ContentType,
Content = card
};
var message = context.MakeMessage();
message.Attachments = new List<Attachment>();
message.Attachments.Add(cardAttachment);
await context.PostAsync(message);
context.Wait(this.MessageReceivedAsync);
}
private async Task MessageReceivedAsync(IDialogContext context, IAwaitable<object> result)
{
var temp = await result as Activity;
string date = temp.Text;
//DateTime newDate = DateTime.ParseExact(value.ToString(), "yyyy'-'MM'-'dd'T'HH':'mm':'ss", CultureInfo.InvariantCulture);
Debug.WriteLine("Entered Msg received Async:" + date);
await context.PostAsync(date);
}
Текущая ошибка
В данный момент я сталкиваюсь с этой проблемой и не могу найти решение:
Возникло исключение: «Microsoft.CSharp.RuntimeBinder.RuntimeBinderException» в mscorlib.dll
Буду признателен за любую помощь и надеюсь извлечь уроки из обсуждений, если таковые будут :)