Tools, FAQ, Tutorials:
Azure API Policy XML Document Structure
What is the XML Document Structure of an Azure API service operation?
✍: FYIcenter.com
Azure API Policy XML Document contains 4 policy blocks:
Here is an example of a policy XML document, which uses the "base" policy statement to keep Azure default behavior in all cases:
<policies> <inbound> <base /> </inbound> <backend> <base /> </backend> <outbound> <base /> </outbound> <on-error> <base /> </on-error> </policies>
2018-03-10, 2035🔥, 0💬
Popular Posts:
What properties and functions are supported on http.client.HTTPResponse objects? If you get an http....
What's Wrong with "while ($c=fgetc($f)) {}" in PHP? If you are using "while ($c=fgetc($f)) {}" to lo...
How to use the JSON to XML Conversion Tool at freeformatter.com? If you want to try the JSON to XML ...
Where to find tutorials on JSON (JavaScript Object Notation) text string format? I want to know how ...
How to add request URL Template Parameters to my Azure API operation to make it more user friendly? ...