Skip to main content
.NET 6.0+

IModelXmlConverter.ConvertXml(ConvertXmlParameters) Method

Converts the specified Application Model node’s differences.

Namespace: DevExpress.ExpressApp.Updating

Assembly: DevExpress.ExpressApp.v23.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