Exemplo n.º 1
0
        public static byte[] GetExternalResource(string resourceUrl, bool impersonate, string surrogateUser, string surrogatePassword, string surrogateDomain, int webTimeout, int maxResourceSizeBytes, ExternalResourceAbortHelper abortHelper, out string mimeType, out bool resourceExceededMaxSize)
        {
            byte[] result = null;
            mimeType = null;
            Uri        uri        = new Uri(resourceUrl);
            WebRequest webRequest = (!uri.IsFile) ? ((WebRequest)(HttpWebRequest)WebRequest.Create(uri)) : ((WebRequest)(FileWebRequest)WebRequest.Create(uri));
            int        timeout    = 600000;

            if (webTimeout > 0 && webTimeout < 2147483)
            {
                webRequest.Timeout = webTimeout * 1000;
            }
            else
            {
                webRequest.Timeout = timeout;
            }
            if (surrogateUser != null)
            {
                webRequest.Credentials = new NetworkCredential(surrogateUser, surrogatePassword, surrogateDomain);
            }
            else if (impersonate)
            {
                webRequest.Credentials = CredentialCache.DefaultCredentials;
            }
            else
            {
                webRequest.Credentials = null;
            }
            resourceExceededMaxSize = false;
            using (WebResponse webResponse = ExternalResourceLoader.RequestExternalResource(webRequest, abortHelper))
            {
                mimeType = webResponse.ContentType;
                using (Stream s = webResponse.GetResponseStream())
                {
                    result = ((maxResourceSizeBytes != ExternalResourceLoader.MaxResourceSizeUnlimited) ? StreamSupport.ReadToEndNotUsingLength(s, 1024, maxResourceSizeBytes, out resourceExceededMaxSize) : StreamSupport.ReadToEndNotUsingLength(s, 1024));
                }
            }
            if (uri.IsFile && !resourceExceededMaxSize)
            {
                string text = Path.GetExtension(uri.LocalPath).ToUpperInvariant();
                if (text != null && text.StartsWith(".", StringComparison.Ordinal))
                {
                    text = text.Substring(1);
                }
                string mimeTypeByRegistryLookup = ExternalResourceLoader.GetMimeTypeByRegistryLookup(text);
                if (mimeTypeByRegistryLookup != null)
                {
                    mimeType = mimeTypeByRegistryLookup;
                }
            }
            return(result);
        }
        public static byte[] ReadToEndNotUsingLength(Stream s, int initialBufferSize)
        {
            bool flag = default(bool);

            return(StreamSupport.ReadToEndNotUsingLength(s, initialBufferSize, StreamSupport.__MaxAllowedBytesUnlimited, out flag));
        }