Skip to main content
.NET Framework 4.6.2+

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

IModelXmlConverter.ConvertXml(ConvertXmlParameters) Method

Converts the specified Application Model node’s differences.

Namespace: DevExpress.ExpressApp.Updating

Assembly: DevExpress.ExpressApp.v24.2.dll

NuGet Package: DevExpress.ExpressApp

#Declaration

void ConvertXml(
    ConvertXmlParameters parameters
)

#Parameters

Name Type Description
parameters ConvertXmlParameters

A ConvertXmlParameters object, representing the Application Model node’s differences.

#Remarks

Support the IModelXmlConverter interface in your Module and implement the ConvertXml method, to make the required changes in the model differences. This method is invoked for each node customized in differences and takes the ConvertXmlParameters object as a parameter. This object provides you with access to the node stored in differences. With this method, you can handle, for instance, changing the type of a certain node. Refer to the Convert Application Model Differences topic to see the example.

See Also