I have a remote event receiver and i am storing the ClientID & the ClientSecret inside the web.config as follow:-
<appSettings>
<add key="ClientId" value="3**8" />
<add key="ClientSecret" value="t**=" />
</appSettings>
now i want to store the ClientSecret inside Azure key value instead of been stored as a plain text inside the web.config.. i did the following steps:-
Inside Azure Key Vault >> i create a new entity, as follow:-
then inside the created key valut >> i added a new secret and i define the ClientSecret as its value, as follow:-

but i am not sure how i can access the Secret value inside my web.config?