Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / xsp / System / Web / HttpPostedFile.cs / 1 / HttpPostedFile.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* * HttpCookie - collection + name + path * * Copyright (c) 1998 Microsoft Corporation */ namespace System.Web { using System.IO; using System.Security.Permissions; using System.Configuration; using System.Web.Configuration; using System.Web.Management; ////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class HttpPostedFile { private String _filename; private String _contentType; private HttpInputStream _stream; internal HttpPostedFile(String filename, String contentType, HttpInputStream stream) { _filename = filename; _contentType = contentType; _stream = stream; } /* * File name */ ////// Provides a way to /// access files uploaded by a client. /// ////// public String FileName { get { return _filename;} } /* * Content type */ ////// Returns the full path of a file on the local browser's machine (for /// example, "c:\temp\test.txt"). /// ////// public String ContentType { get { return _contentType;} } /* * Content length */ ////// Returns the MIME content type of an incoming file sent by a client. /// ////// public int ContentLength { get { return (int)_stream.Length;} } /* * Stream */ ////// Returns the size of an uploaded file, in bytes. /// ////// public Stream InputStream { get { return _stream;} } /* * Save into file */ ////// Provides raw access to /// contents of an uploaded file. /// ////// public void SaveAs(String filename) { // VSWhidbey 82855 if (!Path.IsPathRooted(filename)) { HttpRuntimeSection config = RuntimeConfig.GetConfig().HttpRuntime; if (config.RequireRootedSaveAsPath) { throw new HttpException(SR.GetString(SR.SaveAs_requires_rooted_path, filename)); } } FileStream f = new FileStream(filename, FileMode.Create); try { _stream.WriteTo(f); f.Flush(); } finally { f.Close(); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// Initiates a utility method to save an uploaded file to disk. /// ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* * HttpCookie - collection + name + path * * Copyright (c) 1998 Microsoft Corporation */ namespace System.Web { using System.IO; using System.Security.Permissions; using System.Configuration; using System.Web.Configuration; using System.Web.Management; ////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class HttpPostedFile { private String _filename; private String _contentType; private HttpInputStream _stream; internal HttpPostedFile(String filename, String contentType, HttpInputStream stream) { _filename = filename; _contentType = contentType; _stream = stream; } /* * File name */ ////// Provides a way to /// access files uploaded by a client. /// ////// public String FileName { get { return _filename;} } /* * Content type */ ////// Returns the full path of a file on the local browser's machine (for /// example, "c:\temp\test.txt"). /// ////// public String ContentType { get { return _contentType;} } /* * Content length */ ////// Returns the MIME content type of an incoming file sent by a client. /// ////// public int ContentLength { get { return (int)_stream.Length;} } /* * Stream */ ////// Returns the size of an uploaded file, in bytes. /// ////// public Stream InputStream { get { return _stream;} } /* * Save into file */ ////// Provides raw access to /// contents of an uploaded file. /// ////// public void SaveAs(String filename) { // VSWhidbey 82855 if (!Path.IsPathRooted(filename)) { HttpRuntimeSection config = RuntimeConfig.GetConfig().HttpRuntime; if (config.RequireRootedSaveAsPath) { throw new HttpException(SR.GetString(SR.SaveAs_requires_rooted_path, filename)); } } FileStream f = new FileStream(filename, FileMode.Create); try { _stream.WriteTo(f); f.Flush(); } finally { f.Close(); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Initiates a utility method to save an uploaded file to disk. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ContractMapping.cs
- _NegoState.cs
- AddInDeploymentState.cs
- ConfigurationValue.cs
- GridProviderWrapper.cs
- RSAOAEPKeyExchangeDeformatter.cs
- ObjectRef.cs
- TileBrush.cs
- ButtonFieldBase.cs
- DeviceFilterDictionary.cs
- CommonRemoteMemoryBlock.cs
- TextLine.cs
- HttpRequestCacheValidator.cs
- LineBreakRecord.cs
- TraceSection.cs
- GB18030Encoding.cs
- SqlProviderServices.cs
- QueryResponse.cs
- FakeModelPropertyImpl.cs
- AssociationSetEnd.cs
- WindowsListViewItemCheckBox.cs
- MeshGeometry3D.cs
- DesignerAdapterUtil.cs
- DataViewListener.cs
- Helper.cs
- TypeSource.cs
- ProcessThreadDesigner.cs
- Pens.cs
- PropertyItem.cs
- FileVersion.cs
- AudioSignalProblemOccurredEventArgs.cs
- XPathMultyIterator.cs
- RepeatButton.cs
- SelectionBorderGlyph.cs
- DataGridToolTip.cs
- DeadCharTextComposition.cs
- FieldInfo.cs
- Win32SafeHandles.cs
- DataColumnMapping.cs
- CheckBoxPopupAdapter.cs
- CharacterBufferReference.cs
- brushes.cs
- GiveFeedbackEventArgs.cs
- ConvertersCollection.cs
- NotImplementedException.cs
- Translator.cs
- ToolStripItemCollection.cs
- ClientData.cs
- HtmlDocument.cs
- ListBoxDesigner.cs
- DoubleAnimationClockResource.cs
- FieldTemplateFactory.cs
- PolygonHotSpot.cs
- SqlOuterApplyReducer.cs
- ConnectionManagementElement.cs
- TimelineClockCollection.cs
- Literal.cs
- EndPoint.cs
- ZipIOExtraFieldZip64Element.cs
- LogLogRecordEnumerator.cs
- SqlServices.cs
- RegexEditorDialog.cs
- TableAdapterManagerHelper.cs
- SafeRightsManagementHandle.cs
- Win32MouseDevice.cs
- ResXDataNode.cs
- RawStylusInput.cs
- ActivationServices.cs
- CodeMemberField.cs
- HttpListener.cs
- PersistChildrenAttribute.cs
- MetadataArtifactLoaderFile.cs
- CodeCompiler.cs
- NodeFunctions.cs
- NativeCompoundFileAPIs.cs
- OutputCacheSettings.cs
- TraceFilter.cs
- WebConfigurationManager.cs
- ServiceNameCollection.cs
- DiscoveryInnerClientManaged11.cs
- LassoSelectionBehavior.cs
- SecurityTokenParameters.cs
- PageParserFilter.cs
- ZipIOExtraFieldElement.cs
- ColorAnimationBase.cs
- HttpCookie.cs
- ViewStateModeByIdAttribute.cs
- QuaternionAnimation.cs
- PropertyGridCommands.cs
- SurrogateEncoder.cs
- EventBuilder.cs
- TypeLibConverter.cs
- ComponentEvent.cs
- PreviewPageInfo.cs
- KeysConverter.cs
- EncoderNLS.cs
- WebServiceAttribute.cs
- BreakRecordTable.cs
- ScrollableControlDesigner.cs
- Exceptions.cs