Azure Application Gateway Mutual authentication and client_certificate_verification server variable

Hi,
I have mutual TLS enabled, but when client does not send any certificate then I get "400 Bad Request No required SSL certificate was sent" - that's ok. But, is it possible to use client_certificate_verification server variable to pass the request further and not drop it at all?
Basically, what I want to achieve is to have one domain entry like https://abc.example.com with MTLS configured BUT when a client does not introduce certificate then the request is passed with client_certificate_verification=NONE (as MS docs says).
Are there any conditions/rewrites to do that? Or is there another way?
If not, where is the client_certificate_verification used? According to docs: "The result of the client certificate verification: SUCCESS, FAILED:<reason>, or NONE if a certificate was not present." so FAILED and NONE may be used somewhere...
Thanks!