webexception पर टैग किए गए जवाब


3
WebException शरीर के साथ पूरी प्रतिक्रिया कैसे प्राप्त करें?
WebException में मैं GetResponse की बॉडी नहीं देख सकता। यह C # में मेरा कोड है: try { return GetResponse(url + "." + ext.ToString(), method, headers, bodyParams); } catch (WebException ex) { switch (ex.Status) { case WebExceptionStatus.ConnectFailure: throw new ConnectionException(); case WebExceptionStatus.Timeout: throw new RequestTimeRanOutException(); case WebExceptionStatus.NameResolutionFailure: throw new ConnectionException(); …
109 c#  webexception 
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.