Hi all,
I currently have a support ticket open with ESRI about this, but figured it wouldn't hurt to also post it on the forum. Reverse geocoding with a local file-based locator returns completely different output attributes when it's a composite locator vs single locator (point address or street address).
Single locator:

Composite Locator:

This issue is not seen with forward geocoding.
I'm using a Composite Address Locator made up of a Point Address Locator and Street Address Locator created with ArcGIS Pro 2.4.2. I'm running ArcGIS Runtime v100.6 in a WPF application. The code used with both composite and non-composite locators is identical and very simple.
<SPAN class="keyword token">var</SPAN> userLocation <SPAN class="operator token">=</SPAN> MainMap<SPAN class="punctuation token">.</SPAN>APSSMapView<SPAN class="punctuation token">.</SPAN><SPAN class="token function">ScreenToLocation</SPAN><SPAN class="punctuation token">(</SPAN>e<SPAN class="punctuation token">.</SPAN>Position<SPAN class="punctuation token">)</SPAN><SPAN class="punctuation token">;</SPAN>
ReverseGeocodeParameters p <SPAN class="operator token">=</SPAN> <SPAN class="keyword token">new</SPAN> <SPAN class="token class-name">ReverseGeocodeParameters</SPAN><SPAN class="punctuation token">(</SPAN><SPAN class="punctuation token">)</SPAN><SPAN class="punctuation token">;</SPAN>
p<SPAN class="punctuation token">.</SPAN>ResultAttributeNames<SPAN class="punctuation token">.</SPAN><SPAN class="token function">Add</SPAN><SPAN class="punctuation token">(</SPAN><SPAN class="string token">"*"</SPAN><SPAN class="punctuation token">)</SPAN><SPAN class="punctuation token">;</SPAN>
<SPAN class="keyword token">var</SPAN> closest <SPAN class="operator token">=</SPAN> <SPAN class="keyword token">await</SPAN> MainMap<SPAN class="punctuation token">.</SPAN>BaseMap<SPAN class="punctuation token">.</SPAN>LocatorTask<SPAN class="punctuation token">.</SPAN><SPAN class="token function">ReverseGeocodeAsync</SPAN><SPAN class="punctuation token">(</SPAN>
userLocation<SPAN class="punctuation token">,</SPAN> p<SPAN class="punctuation token">)</SPAN><SPAN class="punctuation token">;</SPAN><SPAN class="line-numbers-rows"><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN></SPAN>Any ideas? Is this expected behavior?