Hello there,
My WCF Service is hosted in Windows Service and
I have added some keys in the appSettings section of Windows Service app.config.
Now, I want these keys to be available at more than one code file in WCF Library.
Is there any way I can define WCF Service level variable, so that I can avoid -
ConfigurationSettings.AppSettings["xxx"]
at all the places where I need to use the appSettings' key.
Instead I want to set them at one place and use the variable whenever needed.
Thank you!