I'm creating a feature class via .NET code that contains non-geocoded address data.
ArcPy has a function arcpy.geocoding.GeocodeAddresses which allows the geocoding of address data.
Is there somthing similar in the ArcGIS Pro SDK?
I'm aware of the ArcGISRuntime - LocatorTask. GeocodeAsync() function but I'd prefer to use something inbuilt to the .NET SDK rather than needing to use another package.
I'd also prefer not to have a call the python function from .NET to perform the task.