I am trying to get the Auth0 client to prefill the email field by passing a dictionary to the Task LoginAsync(object extraParameters = null) according to this https://auth0.com/docs/libraries/lock/lock-configuration#params-object it should be possible, but its unclear how to achieve this within c# wpf.
I have tried using the following as the "extraParameters":
new Dictionary<string, string>{ {"prefill", "test@test.com" } }
new Dictionary<string, string>{ {"email", "test@test.com" } }
But neither have any impact, is there a way to do this?
I am trying to get the Auth0 client to prefill the email field by passing a dictionary to the Task LoginAsync(object extraParameters = null) according to this https://auth0.com/docs/libraries/lock/lock-configuration#params-object it should be possible, but its unclear how to achieve this within c# wpf.
I have tried using the following as the "extraParameters":
But neither have any impact, is there a way to do this?