ArcGIS Pro 2.6 API Reference Guide
FromSRWkid Property
Example 

ArcGIS.Core.Geometry Namespace > GeographicTransformationListEntry Class : FromSRWkid Property
Gets the well-known ID of the spatial reference from which the data will be projected.
Syntax
public int FromSRWkid {get;}
Public ReadOnly Property FromSRWkid As Integer
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

GeographicTransformationListEntry Class
GeographicTransformationListEntry Members