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, ∼2576🔥, 0💬
Popular Posts:
How to convert JSON Objects to PHP Associative Arrays using the json_decode() function? Actually, JS...
Where to see some Examples of Invalid JSON Values? Here are some Examples of Invalid JSON Values: 1....
How to install "C++/CLI Support" component in Visual Studio? I need to build my Visual Studio C++/CL...
How to add request query string Parameters to my Azure API operation 2017 version to make it more us...
How To Use an Array as a Queue in PHP? A queue is a simple data structure that manages data elements...