Config patch with multiple matched attribute

Abhishek Malaviya
1 min readJul 29, 2019

--

We can use and operator for applying on multiple matched attribute.

Here in below example we are using and operator for type and method attribute.

<sitecore>
<processors>
<uiDeleteItems>
<processor mode="on" type="Custom.DeleteItems, Custom" method="RemoteDelete"
patch:after="*[@type='Sitecore.Shell.Framework.Pipelines.DeleteItems,Sitecore.Kernel' and @method='Execute']"/>
</uiDeleteItems>
</processors>
</sitecore>

--

--

No responses yet