Tools, FAQ, Tutorials:
The Default Policy
What is the default policy for an Azure API operation?
✍: FYIcenter.com
The default policy for an Azure API operation is the following:
<!-- Default-Policy.xml
Copyright (c) FYIcenter.com
-->
<policies>
<inbound>
</inbound>
<backend>
<forward-request />
</backend>
<outbound>
</outbound>
<on-error>
</on-error>
</policies>
If you specify this policy to your API operation, the client request will be forwarded as is to the backend service.
The only thing changed by the Azure is that the public base URL is replaced by the backend base URL.
2023-03-27, ∼2199🔥, 1💬
Popular Posts:
What is the "__init__()" class method? The "__init__()" class method is a special method that will b...
How To Read Data from Keyboard (Standard Input) in PHP? If you want to read data from the standard i...
Where to see some Examples of Invalid JSON Values? Here are some Examples of Invalid JSON Values: 1....
What is EPUB 3.0 Metadata "dcterms:modified" property? EPUB 3.0 Metadata "dcterms:modified" is a req...
Where to find tutorials on Visual Studio? I want to know How to learn Visual Studio. Here is a large...