Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / MIT / System / Web / UI / MobileControls / Design / Util / FileReader.cs / 1305376 / FileReader.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.Design.MobileControls.Util { using System; using System.Diagnostics; using System.Net; using System.IO; [ System.Security.Permissions.SecurityPermission(System.Security.Permissions.SecurityAction.Demand, Flags=System.Security.Permissions.SecurityPermissionFlag.UnmanagedCode) ] [Obsolete("The System.Web.Mobile.dll assembly has been deprecated and should no longer be used. For information about how to develop ASP.NET mobile applications, see http://go.microsoft.com/fwlink/?LinkId=157231.")] internal class FileReader { // Helper class should not be instantiated. private FileReader() { } ////// This method reads a file specified by a uri and returns it /// as a byte array. If the file is located on the local file /// system, a FileStream is used instead of a WebRequest. /// internal static Byte[] Read(Uri uri) { int length; Stream stream; Byte[] buffer = null; try { WebRequest request = WebRequest.Create(uri); WebResponse response = request.GetResponse(); length = (int) response.ContentLength; stream = response.GetResponseStream(); buffer = new Byte[length]; stream.Read(buffer, 0, length); stream.Close(); } catch(Exception e) { Debug.Fail("FileReader - Unable to read url '" + uri.ToString() + ":\r\n" + e.ToString()); return null; } return buffer; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- MaskedTextBox.cs
- IdentityReference.cs
- LineGeometry.cs
- Popup.cs
- DataPagerFieldCommandEventArgs.cs
- ExecutedRoutedEventArgs.cs
- ImageClickEventArgs.cs
- ControlBindingsConverter.cs
- GPPOINTF.cs
- FixedSchema.cs
- DocumentViewerBase.cs
- Image.cs
- WindowsToolbarAsMenu.cs
- IfJoinedCondition.cs
- SafeHandle.cs
- Span.cs
- DataFormat.cs
- DataListComponentEditor.cs
- Validator.cs
- ColumnMapProcessor.cs
- Base64Decoder.cs
- RankException.cs
- ThemeDictionaryExtension.cs
- UpdateProgress.cs
- Animatable.cs
- SpecialNameAttribute.cs
- HorizontalAlignConverter.cs
- SubstitutionList.cs
- SessionStateSection.cs
- SqlTypeConverter.cs
- ConfigurationLocationCollection.cs
- PropertyRef.cs
- _LocalDataStore.cs
- Table.cs
- Selection.cs
- BufferModesCollection.cs
- AttachedPropertyBrowsableWhenAttributePresentAttribute.cs
- _Win32.cs
- JavaScriptObjectDeserializer.cs
- WeakHashtable.cs
- unsafenativemethodstextservices.cs
- UnsafeNativeMethods.cs
- Int16Converter.cs
- MarkupExtensionParser.cs
- RegisteredDisposeScript.cs
- MenuItemAutomationPeer.cs
- PageMediaType.cs
- EdmFunction.cs
- TreeViewEvent.cs
- SafeEventLogWriteHandle.cs
- Relationship.cs
- Bidi.cs
- ScriptModule.cs
- SplitterPanelDesigner.cs
- ByteStorage.cs
- SqlBuffer.cs
- DoubleLink.cs
- GridViewSortEventArgs.cs
- BaseAddressElementCollection.cs
- StringToken.cs
- AdornerHitTestResult.cs
- DesignerWebPartChrome.cs
- QueryCacheManager.cs
- ObjectQuery.cs
- LinkedResourceCollection.cs
- ActivityTypeDesigner.xaml.cs
- SrgsElementFactoryCompiler.cs
- KnownBoxes.cs
- DragEventArgs.cs
- MdiWindowListStrip.cs
- UnsafeNativeMethodsMilCoreApi.cs
- Size3DConverter.cs
- TcpActivation.cs
- XmlSignatureManifest.cs
- BookmarkEventArgs.cs
- ServiceChannel.cs
- FileUtil.cs
- coordinatorfactory.cs
- XmlBinaryReader.cs
- ClientBuildManagerCallback.cs
- FixedMaxHeap.cs
- WebPartVerbCollection.cs
- AutomationFocusChangedEventArgs.cs
- UrlPath.cs
- WindowsRichEdit.cs
- XdrBuilder.cs
- Expander.cs
- WindowShowOrOpenTracker.cs
- DataGridViewCellPaintingEventArgs.cs
- PeerApplication.cs
- PropertyTab.cs
- UsernameTokenFactoryCredential.cs
- ObjectQuery.cs
- Misc.cs
- Parser.cs
- SystemIPv6InterfaceProperties.cs
- SessionSwitchEventArgs.cs
- PriorityQueue.cs
- Validator.cs
- CLRBindingWorker.cs