How can I access and read the parameters defined in the PackageRoot / Settings / Settings.xml file from my statefull / stateless status code? For example, I have a DocumentDbConfig section with an EndpointUrl parameter:
<Section Name="DocumentDbConfig"> <Parameter Name="EndpointUrl" Value="{url}"/> </Section>
And I would like to read it in my code:
public async Task<ServiceActionResult<Result>> GetResult() { _client = new Client({{ EndpointUrl }});
source share