System.Net.HttpWebResponse.HttpWebResponse C# (CSharp) Method

HttpWebResponse() private method

private HttpWebResponse ( SerializationInfo serializationInfo, StreamingContext streamingContext ) : System.Collections.Generic
serializationInfo SerializationInfo
streamingContext StreamingContext
return System.Collections.Generic
        protected HttpWebResponse(SerializationInfo serializationInfo, StreamingContext streamingContext) : base(serializationInfo, streamingContext)
        {
            _webHeaderCollection = (WebHeaderCollection)serializationInfo.GetValue("_HttpResponseHeaders", typeof(WebHeaderCollection));
            _requestUri = (Uri)serializationInfo.GetValue("_Uri", typeof(Uri));
            Version version = (Version)serializationInfo.GetValue("_Version", typeof(Version));
            _isVersionHttp11 = version.Equals(HttpVersion.Version11);            
            ContentLength = serializationInfo.GetInt64("_ContentLength");                        
        }
     

Same methods

HttpWebResponse::HttpWebResponse ( )
HttpWebResponse::HttpWebResponse ( ) : System.Collections.Generic
HttpWebResponse::HttpWebResponse ( HttpResponseMessage _message, Uri requestUri, CookieContainer cookieContainer ) : System.Collections.Generic