Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / 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(); } } } }/// 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
- TypeConvertions.cs
- BCLDebug.cs
- ClockController.cs
- EventLogPermission.cs
- CorePropertiesFilter.cs
- BackStopAuthenticationModule.cs
- ColumnTypeConverter.cs
- TdsValueSetter.cs
- HostingEnvironmentSection.cs
- RichTextBoxAutomationPeer.cs
- XmlnsCache.cs
- ScaleTransform3D.cs
- RectValueSerializer.cs
- CodeDomSerializationProvider.cs
- XamlWriter.cs
- _NegoState.cs
- InlineUIContainer.cs
- ControlBindingsCollection.cs
- UInt16.cs
- XamlSerializationHelper.cs
- SerializationSectionGroup.cs
- ADMembershipUser.cs
- BitmapPalette.cs
- SafeSystemMetrics.cs
- WmlTextBoxAdapter.cs
- XPathAxisIterator.cs
- BaseParser.cs
- BaseDataBoundControl.cs
- SamlAdvice.cs
- CfgParser.cs
- ValidatingReaderNodeData.cs
- CommonGetThemePartSize.cs
- ResourceDescriptionAttribute.cs
- QuinticEase.cs
- RegexCode.cs
- Base64Encoder.cs
- ModelPropertyImpl.cs
- ProcessThread.cs
- NameTable.cs
- PersistenceMetadataNamespace.cs
- DBConcurrencyException.cs
- DrawingImage.cs
- LineVisual.cs
- CancelEventArgs.cs
- ScrollItemPatternIdentifiers.cs
- DoubleUtil.cs
- OdbcEnvironmentHandle.cs
- StreamGeometryContext.cs
- UserValidatedEventArgs.cs
- Visitor.cs
- ProviderCollection.cs
- _CommandStream.cs
- UITypeEditors.cs
- AttributeConverter.cs
- SurrogateEncoder.cs
- HelpProvider.cs
- MergablePropertyAttribute.cs
- FixedDocumentSequencePaginator.cs
- DataGridViewRowErrorTextNeededEventArgs.cs
- MulticastDelegate.cs
- ProjectionNode.cs
- DescendantOverDescendantQuery.cs
- RuleDefinitions.cs
- ApplicationFileCodeDomTreeGenerator.cs
- MarkedHighlightComponent.cs
- BitmapSizeOptions.cs
- RegexStringValidatorAttribute.cs
- Roles.cs
- IIS7WorkerRequest.cs
- CompoundFileReference.cs
- Window.cs
- ElementHostPropertyMap.cs
- TransformedBitmap.cs
- TreeViewAutomationPeer.cs
- TransformerTypeCollection.cs
- HtmlForm.cs
- MetabaseServerConfig.cs
- ProofTokenCryptoHandle.cs
- StatusBar.cs
- UserControlDocumentDesigner.cs
- CustomAttributeSerializer.cs
- ContentPlaceHolder.cs
- ReachUIElementCollectionSerializerAsync.cs
- RootDesignerSerializerAttribute.cs
- DataReaderContainer.cs
- PagerSettings.cs
- DataGridViewCellFormattingEventArgs.cs
- TcpSocketManager.cs
- OdbcUtils.cs
- FrameAutomationPeer.cs
- FaultImportOptions.cs
- StyleXamlParser.cs
- SafePEFileHandle.cs
- CompiledQueryCacheKey.cs
- FieldToken.cs
- ChangeProcessor.cs
- StringDictionaryEditor.cs
- GorillaCodec.cs
- OracleRowUpdatedEventArgs.cs
- Accessible.cs