private void OnScriptNotify(object sender, ScriptNotifyEventArgs e) { this.Response = JSNotifyRequestSecurityTokenResponse.FromJson(e.Data); this.DialogResult = true; this.Close(); }
private void OnScriptNotify(object sender, ScriptNotifyEventArgs e) { OnSignedIn(JsonValue.Parse(e.Data)); this.Close(); }
private void OnScriptNotify(object sender, ScriptNotifyEventArgs e) { this.Response = JsonNotifyRequestSecurityTokenResponse.FromJson(e.Data); this.DialogResult = true; this.Close(); }
private void OnScriptNotify(object sender, ScriptNotifyEventArgs e) { OnSignedIn(JObject.Parse(e.Data)); this.Close(); }