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
- Mouse.cs
- SQLByte.cs
- MessageVersion.cs
- XmlEncoding.cs
- SqlDependencyListener.cs
- TimeSpanMinutesOrInfiniteConverter.cs
- DataReceivedEventArgs.cs
- ProtocolsConfigurationEntry.cs
- PrintDialog.cs
- UInt64Converter.cs
- IntSecurity.cs
- WriteLine.cs
- CodeDirectionExpression.cs
- XpsThumbnail.cs
- ReadOnlyHierarchicalDataSource.cs
- regiisutil.cs
- PolyQuadraticBezierSegment.cs
- UInt32Converter.cs
- SystemIPInterfaceStatistics.cs
- ReflectPropertyDescriptor.cs
- DataViewSettingCollection.cs
- TakeQueryOptionExpression.cs
- EventLogger.cs
- QuerySettings.cs
- FixedSOMTableCell.cs
- TextTreeInsertUndoUnit.cs
- TemplateModeChangedEventArgs.cs
- XmlSchemaSubstitutionGroup.cs
- _UriSyntax.cs
- SQLMembershipProvider.cs
- EffectiveValueEntry.cs
- dtdvalidator.cs
- TemplateParser.cs
- FrameworkRichTextComposition.cs
- FormViewModeEventArgs.cs
- TimeSpanConverter.cs
- IteratorFilter.cs
- FrugalMap.cs
- SymDocumentType.cs
- XmlSchemaSimpleContentRestriction.cs
- GuidConverter.cs
- X509Extension.cs
- FtpCachePolicyElement.cs
- EdmPropertyAttribute.cs
- TemplatedMailWebEventProvider.cs
- DataSourceGeneratorException.cs
- StringArrayConverter.cs
- AsymmetricSecurityProtocolFactory.cs
- FunctionMappingTranslator.cs
- RevocationPoint.cs
- Panel.cs
- TdsRecordBufferSetter.cs
- KeyPressEvent.cs
- MethodCallTranslator.cs
- SharedUtils.cs
- LoadedOrUnloadedOperation.cs
- DefaultMemberAttribute.cs
- WindowsTab.cs
- ObjectCloneHelper.cs
- XmlStreamStore.cs
- TCPListener.cs
- XslException.cs
- WmfPlaceableFileHeader.cs
- FormatConvertedBitmap.cs
- ContextQuery.cs
- RefType.cs
- InvalidOperationException.cs
- ThemeDirectoryCompiler.cs
- WebSysDescriptionAttribute.cs
- Bold.cs
- followingquery.cs
- MatrixIndependentAnimationStorage.cs
- figurelength.cs
- UnsafeNativeMethods.cs
- ExpressionDumper.cs
- IteratorFilter.cs
- basemetadatamappingvisitor.cs
- ParsedRoute.cs
- WinFormsSpinner.cs
- HistoryEventArgs.cs
- ObjectCache.cs
- GC.cs
- HtmlTernaryTree.cs
- CellConstantDomain.cs
- InlineCollection.cs
- ViewKeyConstraint.cs
- StorageComplexTypeMapping.cs
- Stream.cs
- UnsafeNativeMethods.cs
- TextWriter.cs
- DataBoundControlHelper.cs
- DataTrigger.cs
- PackagePartCollection.cs
- WebControl.cs
- Unit.cs
- Deflater.cs
- DSASignatureDeformatter.cs
- ImageList.cs
- ExceptionHelpers.cs
- KeyValuePair.cs