I have an azure app service which I've configured to set "Client Certificate Mode" to "Require" in General Settings. I am trying to access the client certificate upon successful connection.
Per the docs, it says that
In App Service, TLS termination of the request happens at the frontend load balancer. When forwarding the request to your app code with client certificates enabled, App Service injects an X-ARR-ClientCert request header with the client certificate. App Service does not do anything with this client certificate other than forwarding it to your app. Your app code is responsible for validating the client certificate.
For ASP.NET, the client certificate is available through the HttpRequest.ClientCertificate property.
For other application stacks (Node.js, PHP, etc.), the client cert is available in your app through a base64 encoded value in the X-ARR-ClientCert request header.
I am not seeing any header by the name of X-ARR-ClientCert at all, let alone the CA, CN, or DN.
I have set up a minimal example environment, brand new app service with no changes, and seeing not headers - either in response or request, that include the client certificate in header under the name X-ARR-ClientCert. I have a valid client certificate installed, which is allowing me in - I just have no access to the client certificate, as the docs state I should..
Images below to show what I'm seeing:

