Thank you to Marcel and Mugundhan for the info, appreciate it.
While waiting for the new release that Mugundhan mentioned, I have utilized the ContentView.BindingContext workaround that Marcel noted. Works like a charm.
<tabView:SfTabItem.Content>
<ContentView>
<ContentView.BindingContext>
<vm:CommunicationViewModel />
</ContentView.BindingContext>
<ScrollView>
<controls:AuthenticatedWebView
x:Name="authenticatedWebView"
HorizontalOptions="FillAndExpand"
VerticalOptions="FillAndExpand"
AuthenticationHeaderValue="{Binding BearerToken}"
Source="{Binding WebViewSource}"
Navigating="webOnNavigating"
Navigated="webOnNavigated" />
</ScrollView>
</ContentView>
</tabView:SfTabItem.Content>
Thanks again.
Troy