Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / HttpFileCollection.cs / 1 / HttpFileCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* * Collection of posted files for the request intrinsic * * Copyright (c) 1998 Microsoft Corporation */ namespace System.Web { using System.Runtime.InteropServices; using System.Collections; using System.Collections.Specialized; using System.Security.Permissions; using System.Web.Util; ////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class HttpFileCollection : NameObjectCollectionBase { // cached All[] arrays private HttpPostedFile[] _all; private String[] _allKeys; internal HttpFileCollection() : base(Misc.CaseInsensitiveInvariantKeyComparer) { } ////// Accesses incoming files uploaded by a client (using /// multipart MIME and the Http Content-Type of multipart/formdata). /// ////// public void CopyTo(Array dest, int index) { if (_all == null) { int n = Count; _all = new HttpPostedFile[n]; for (int i = 0; i < n; i++) _all[i] = Get(i); } if (_all != null) { _all.CopyTo(dest, index); } } internal void AddFile(String key, HttpPostedFile file) { _all = null; _allKeys = null; BaseAdd(key, file); } #if UNUSED internal void Reset() { _all = null; _allKeys = null; BaseClear(); } #endif // // Access by name // ///[To be supplied.] ////// public HttpPostedFile Get(String name) { return(HttpPostedFile)BaseGet(name); } ////// Returns a file from /// the collection by file name. /// ////// public HttpPostedFile this[String name] { get { return Get(name);} } // // Indexed access // ///Returns item value from collection. ////// public HttpPostedFile Get(int index) { return(HttpPostedFile)BaseGet(index); } ////// Returns a file from /// the file collection by index. /// ////// public String GetKey(int index) { return BaseGetKey(index); } ////// Returns key name from collection. /// ////// public HttpPostedFile this[int index] { get { return Get(index);} } // // Access to keys and values as arrays // ////// Returns an /// item from the collection. /// ////// public String[] AllKeys { get { if (_allKeys == null) _allKeys = BaseGetAllKeys(); return _allKeys; } } } }/// Creates an /// array of keys in the collection. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DynamicPhysicalDiscoSearcher.cs
- RequestCachePolicy.cs
- EntityContainerEntitySetDefiningQuery.cs
- Wow64ConfigurationLoader.cs
- Version.cs
- XmlnsCache.cs
- ErrorInfoXmlDocument.cs
- ClientBuildManager.cs
- XmlQuerySequence.cs
- FileLogRecordStream.cs
- QilFunction.cs
- EventItfInfo.cs
- DataGridHelper.cs
- TextPenaltyModule.cs
- TTSEvent.cs
- While.cs
- LinqDataView.cs
- SchemaImporterExtension.cs
- ForEachAction.cs
- MessageQueueException.cs
- Cell.cs
- ParameterBuilder.cs
- CheckableControlBaseAdapter.cs
- ArrayWithOffset.cs
- ServiceBuildProvider.cs
- HtmlToClrEventProxy.cs
- AnnotationDocumentPaginator.cs
- DataSourceGroupCollection.cs
- RoleService.cs
- FileSystemEventArgs.cs
- HierarchicalDataBoundControlAdapter.cs
- IpcChannelHelper.cs
- Interfaces.cs
- HttpRuntime.cs
- ButtonRenderer.cs
- CodeGeneratorOptions.cs
- ViewStateException.cs
- EntityDataSourceSelectingEventArgs.cs
- XmlParser.cs
- ProjectionAnalyzer.cs
- AnnouncementInnerClient11.cs
- TraceHandlerErrorFormatter.cs
- FrameSecurityDescriptor.cs
- TextViewDesigner.cs
- JsonXmlDataContract.cs
- CounterCreationData.cs
- HtmlWindowCollection.cs
- NGCPageContentSerializerAsync.cs
- _FtpDataStream.cs
- SoapAttributeOverrides.cs
- ZipIOCentralDirectoryDigitalSignature.cs
- XNodeSchemaApplier.cs
- TextChange.cs
- ArgumentValue.cs
- CRYPTPROTECT_PROMPTSTRUCT.cs
- QilGenerator.cs
- ManipulationLogic.cs
- CodeLabeledStatement.cs
- XmlDocumentFragment.cs
- ErrorProvider.cs
- Script.cs
- BoundsDrawingContextWalker.cs
- IntegrationExceptionEventArgs.cs
- CatalogUtil.cs
- ServiceChannelFactory.cs
- QilLiteral.cs
- Column.cs
- SectionUpdates.cs
- XmlEntityReference.cs
- KnownIds.cs
- ObjectDisposedException.cs
- Delay.cs
- TouchEventArgs.cs
- ObjectResult.cs
- ValueUtilsSmi.cs
- ImageFormatConverter.cs
- HScrollBar.cs
- SiteMap.cs
- SerializationHelper.cs
- DataGridViewTextBoxColumn.cs
- RuleRefElement.cs
- ADRoleFactoryConfiguration.cs
- FloaterParagraph.cs
- HtmlInputText.cs
- DoubleLinkList.cs
- ListViewInsertedEventArgs.cs
- CodeArrayCreateExpression.cs
- ServiceSecurityAuditBehavior.cs
- HelpKeywordAttribute.cs
- RIPEMD160.cs
- StylusPointPropertyInfoDefaults.cs
- SequentialWorkflowHeaderFooter.cs
- VideoDrawing.cs
- ObjectFactoryCodeDomTreeGenerator.cs
- FormsAuthenticationEventArgs.cs
- SamlConstants.cs
- ProfileServiceManager.cs
- ErrorTableItemStyle.cs
- NegatedConstant.cs
- FixedSOMLineCollection.cs