Merge branch 'vnext' of github.com:pazof/yavsc into vnext

This commit is contained in:
Paul Schneider 2016-11-09 14:31:27 +01:00
commit 04d0cf6509

View file

@ -48,6 +48,7 @@ namespace BookAStar.Pages
if (string.IsNullOrEmpty(user.ChatHubConnectionId)) return;
IsBusy = true;
try
{
await App.ChatHubProxy.Invoke<string>("SendPV", user.ChatHubConnectionId, pvEntry.Text);
pvEntry.Text = null;
@ -60,14 +61,7 @@ namespace BookAStar.Pages
};
}
private void ReconnectButton_Clicked(object sender, EventArgs e)
{
App.ChatHubConnection.Stop();
App.ChatHubConnection.Start();
}
private void ChatHubConnection_StateChanged(StateChange obj)
{
Xamarin.Forms.Device.BeginInvokeOnMainThread(