0
我想在我的xamarin.android
應用程序中使用websocket
,但無法使用websocket class
與服務器連接。WebSocket不能與Xamarin.Android一起使用
使用WebSocket4net
NuGet包,但它不起作用。
代碼
WebSocket websocket = new WebSocket("ws://" + IPData[0].Trim() + ":" + IPData[1].Trim());
if (websocket.State != WebSocketState.None)
{
var videoIntent = new Intent(this, typeof(VideoActivity));
StartActivity(videoIntent);
}
else
{
new AlertDialog.Builder(this)
.SetPositiveButton("Ok", delegate
{
})
.SetTitle("Connection Error")
.SetMessage("Not Connect to server")
.Show();
}
})
.SetTitle("IP Updated")
.SetMessage("IP Info Updated Successfully")
.Show();