Hi Everyone,
I was wondering if there is a way to have query strings in New Universal Login Page using Custom Domain. I see we can do that with classic login page by passing customParams
                        if (notification.ProtocolMessage.RequestType == OpenIdConnectRequestType.Authentication)
                        {
                            // The context's ProtocolMessage can be used to pass along additional query parameters
                            // to Auth0's /authorize endpoint.
			               notification.ProtocolMessage.SetParameter("survey", "yes");
			            }
Please let me know if I am missing something or any other way to accomplish this functionality
Note: We have used asp.net quick start code