Tools, FAQ, Tutorials:
Use Custom Variables in Policy Expressions
How to use custom variables created by "set-variable" statements in policy expressions?
✍: FYIcenter.com
If you want to access custom variables created by "set-variable" statements,
you can use the IReadOnlyDictionary object through "context.Variables".
For example, the following policy creates a custom variable during the inbound processing step and used it in the output processing step:
<inbound> <set-variable name="method" value="@(context.Request.Method)"/> </inbound> <outbound> <trace source="DEBUG">@(context.Variables["method"])</trace> </outbound>
⇒ 'choose ... when ...' Statements to Control Execution Flows
2018-01-24, 2155👍, 0💬
Popular Posts:
How to use the "set-backend-service" Policy Statement for an Azure API service operation? The "set-b...
What properties and functions are supported on requests.models.Response objects? "requests" module s...
What is the "__init__()" class method? The "__init__()" class method is a special method that will b...
How to add images to my EPUB books Images can be added into book content using the XHTML "img" eleme...
How to use the XML to JSON Conversion Tool at freeformatter.com? If you want to try the XML to JSON ...