ArcGIS Pro 2.6 API Reference Guide
GetPredefinedGeographicTransformationList Method (GeometryEngine)
Example 

ArcGIS.Core.Geometry Namespace > GeometryEngine Class : GetPredefinedGeographicTransformationList Method
Gets the list of predefined geographic transformations.
Syntax
public IReadOnlyList<GeographicTransformationListEntry> GetPredefinedGeographicTransformationList()
Public Function GetPredefinedGeographicTransformationList() As IReadOnlyList(Of GeographicTransformationListEntry)

Return Value

Example
// a geographic transformation is the definition of how to project from one spatial reference to another
IReadOnlyList<GeographicTransformationListEntry> list = GeometryEngine.Instance.GetPredefinedGeographicTransformationList();

// a GeographicTransformationListEntry consists of Name, Wkid, the From SpatialReference Wkid, the To SpatialReference Wkid
GeographicTransformationListEntry entry = list[0];

int fromWkid = entry.FromSRWkid;
int toWkid = entry.ToSRWkid;
int wkid = entry.Wkid;
string name = entry.Name;
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 7

See Also

Reference

GeometryEngine Class
GeometryEngine Members