Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View qswinson's full-sized avatar

Quenby Mitchell qswinson

View GitHub Profile
@qswinson
qswinson / ExceptionHandlerDialog.cs
Created September 2, 2016 15:46
Configurable Exception Handling Dialog for Microsoft BotBuilder
using Microsoft.Bot.Builder.Dialogs;
using System;
using System.Threading.Tasks;
namespace ChatBot.Dialogs
{
[Serializable]
public class ExceptionHandlerDialog<T> : IDialog<T>
{
private readonly Func<IDialog<T>> _makeDialog;