0
我的應用程序連接了一個WCF服務(.NET 4.5)。我使用slsvcutil(silverligth 5)構建代理,並且工作正常。 但我有超時問題。我在1分鐘內出現錯誤。 這個it's我的代碼:如何在xmarin droid上設置超時wcf
BasicHttpBinding bindin = new BasicHttpBinding();
bindin.MaxReceivedMessageSize = 267386880;
var timeout = new TimeSpan(0, 10, 0);
bindin.SendTimeout = timeout;
bindin.OpenTimeout = timeout;
bindin.ReceiveTimeout = timeout;
wcf = new ServicioInasaClient(bindin, new EndpointAddress(editHost.Text));
感謝