Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / 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; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------------------------ ///// Creates an /// array of keys in the collection. /// ///// 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; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved./// Creates an /// array of keys in the collection. /// ///
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DBCommand.cs
- TrustDriver.cs
- FrameworkReadOnlyPropertyMetadata.cs
- OutputScopeManager.cs
- TransformerConfigurationWizardBase.cs
- GridViewHeaderRowPresenterAutomationPeer.cs
- XsdCachingReader.cs
- HttpRuntime.cs
- UTF32Encoding.cs
- CreateBookmarkScope.cs
- CalendarBlackoutDatesCollection.cs
- LogExtent.cs
- CodeGeneratorOptions.cs
- DropShadowBitmapEffect.cs
- SynchronizedInputPattern.cs
- CqlIdentifiers.cs
- MethodImplAttribute.cs
- ConfigXmlWhitespace.cs
- PageRequestManager.cs
- Pair.cs
- DependentList.cs
- ListBoxAutomationPeer.cs
- DataServiceRequestException.cs
- GroupBox.cs
- EntityContainerRelationshipSetEnd.cs
- ArgumentValidation.cs
- CatalogPartDesigner.cs
- SqlRetyper.cs
- IndexingContentUnit.cs
- AuthStoreRoleProvider.cs
- TypeSystem.cs
- XhtmlBasicTextBoxAdapter.cs
- SafeCryptContextHandle.cs
- ContentType.cs
- IItemContainerGenerator.cs
- BuilderElements.cs
- UIPermission.cs
- UrlParameterReader.cs
- PropertyMappingExceptionEventArgs.cs
- RecordManager.cs
- InfoCardXmlSerializer.cs
- CacheAxisQuery.cs
- TypeLoadException.cs
- VideoDrawing.cs
- TransactionException.cs
- Table.cs
- EventMappingSettingsCollection.cs
- XDRSchema.cs
- EventLogPermissionEntry.cs
- ProcessModuleCollection.cs
- JoinGraph.cs
- CustomAssemblyResolver.cs
- _LazyAsyncResult.cs
- NamespaceEmitter.cs
- ContextStaticAttribute.cs
- Matrix3DConverter.cs
- GridViewPageEventArgs.cs
- Latin1Encoding.cs
- MessageEventSubscriptionService.cs
- BitmapVisualManager.cs
- SQLByteStorage.cs
- DbParameterCollectionHelper.cs
- EntitySqlException.cs
- WindowShowOrOpenTracker.cs
- HMACSHA1.cs
- FloatSumAggregationOperator.cs
- LinqDataSource.cs
- GridViewCommandEventArgs.cs
- TextBoxBase.cs
- TransformationRules.cs
- DivideByZeroException.cs
- SimpleExpression.cs
- KeyValueConfigurationCollection.cs
- GroupBoxRenderer.cs
- FixedSOMContainer.cs
- CustomErrorCollection.cs
- ToolStripDropDownItem.cs
- Image.cs
- SubpageParagraph.cs
- TransportContext.cs
- ListViewDeleteEventArgs.cs
- SqlCacheDependency.cs
- Run.cs
- OTFRasterizer.cs
- FontFamily.cs
- NeutralResourcesLanguageAttribute.cs
- MimeTypeMapper.cs
- IdentityNotMappedException.cs
- coordinator.cs
- ControlPropertyNameConverter.cs
- WebPageTraceListener.cs
- ProfileEventArgs.cs
- sortedlist.cs
- VerificationAttribute.cs
- Pool.cs
- ItemsPanelTemplate.cs
- ToolStripSplitButton.cs
- GridViewColumnCollectionChangedEventArgs.cs
- ResXResourceWriter.cs
- SamlAssertionKeyIdentifierClause.cs