Skip to content

Instantly share code, notes, and snippets.

@r4hulp
Created December 29, 2017 12:25
Embed
What would you like to do?
Injecting parameters in Dialog
Dictionary<string, object> dict = new Dictionary<string, object>();
dict.Add("ticket_id", "this is string");
dict.Add("order", this.order);
context.Call(this.dialogFactory.Create<OrderSummaryDialog, Dictionary<string, object>>(dict), this.AfterOrderSummaryDialog);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment