ArcGIS Pro 2.6 API Reference Guide
ToBinaryXML Method
Example 

ArcGIS.Core.Geometry Namespace > Multipatch Class : ToBinaryXML Method
Serializes this geometry instance into an ArcGIS binary XML geometry representation.
Syntax
public string ToBinaryXML()
Public Function ToBinaryXML() As String

Return Value

Geometry represented as a binary XML string.
Example
// export to binary xml
string binaryXml = multiPatch.ToBinaryXML();

// import from binaryXML - methods need to run on the MCT
Multipatch binaryMultipatch = MultipatchBuilder.FromBinaryXML(binaryXml);

// xml export / import
string xml = multiPatch.ToXML();
Multipatch xmlMultipatch = MultipatchBuilder.FromXML(xml);

// esriShape export/import
byte[] buffer = multiPatch.ToEsriShape();
Multipatch esriPatch = MultipatchBuilder.FromEsriShape(buffer);

// or use GeometryEngine
Multipatch patchImport = GeometryEngine.Instance.ImportFromEsriShape(EsriShapeImportFlags.esriShapeImportDefaults, buffer, multiPatch.SpatialReference) as Multipatch;
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 7

See Also

Reference

Multipatch Class
Multipatch Members