Xml Azure API策略查找和替换-从&;lt&引用;至<&引用;

Xml Azure API策略查找和替换-从&;lt&引用;至<&引用;,xml,azure-api-management,Xml,Azure Api Management,在Azure API管理中,我有一个API,在它的出站策略中,我希望像这样查找和替换 <find-and-replace from="&lt;" to="<" /> 但是,“因为您想要转换” <find-and-replace from="&amp;lt;" to="&lt;" /> new XElement("el", new XAttribute("at", "&lt;")).ToString() <el at="

在Azure API管理中,我有一个API,在它的出站策略中,我希望像这样查找和替换

<find-and-replace from="&lt;" to="<" />


但是,“因为您想要转换”
<find-and-replace from="&amp;lt;" to="&lt;" />
new XElement("el", new XAttribute("at", "&lt;")).ToString()
<el at="&amp;lt;" />