Skip to content

Instantly share code, notes, and snippets.

@r4hulp
Created December 29, 2017 12:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save r4hulp/a1ece3a10b9d6099ac34dd9ea7eb50bd to your computer and use it in GitHub Desktop.
Save r4hulp/a1ece3a10b9d6099ac34dd9ea7eb50bd to your computer and use it in GitHub Desktop.
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