Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / HttpFileCollection.cs / 1305376 / 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; ////// 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); } // // 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. //------------------------------------------------------------------------------ ///// 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; ////// 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); } // // 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./// Creates an /// array of keys in the collection. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- LinqExpressionNormalizer.cs
- Stackframe.cs
- Boolean.cs
- DeviceContexts.cs
- DownloadProgressEventArgs.cs
- CaseStatement.cs
- XmlReader.cs
- TimeoutConverter.cs
- QuadraticBezierSegment.cs
- Icon.cs
- ConstraintStruct.cs
- FilterFactory.cs
- OleDragDropHandler.cs
- GB18030Encoding.cs
- ServiceOperationDetailViewControl.cs
- SHA1CryptoServiceProvider.cs
- EntityPropertyMappingAttribute.cs
- SiteMapNodeItemEventArgs.cs
- ipaddressinformationcollection.cs
- GenericXmlSecurityToken.cs
- XmlSchemaAppInfo.cs
- ActivityMarkupSerializationProvider.cs
- QuaternionConverter.cs
- StylusDownEventArgs.cs
- StringArrayConverter.cs
- SystemInformation.cs
- Win32SafeHandles.cs
- BlurEffect.cs
- XamlRtfConverter.cs
- SQLMoney.cs
- DataGridViewBand.cs
- JsonObjectDataContract.cs
- WebPartTransformerCollection.cs
- SettingsBindableAttribute.cs
- WebHttpElement.cs
- HostUtils.cs
- AnnotationMap.cs
- ComboBox.cs
- MDIControlStrip.cs
- OdbcCommandBuilder.cs
- TrimSurroundingWhitespaceAttribute.cs
- ExeContext.cs
- X509CertificateValidator.cs
- GroupBoxAutomationPeer.cs
- StringFormat.cs
- ApplicationInfo.cs
- HyperLinkColumn.cs
- EdmValidator.cs
- ItemList.cs
- XmlRawWriter.cs
- StringFreezingAttribute.cs
- FormattedTextSymbols.cs
- AsmxEndpointPickerExtension.cs
- SQLDecimalStorage.cs
- AspNetCompatibilityRequirementsMode.cs
- UncommonField.cs
- PeerContact.cs
- CharacterMetrics.cs
- Odbc32.cs
- Util.cs
- XmlSiteMapProvider.cs
- SystemPens.cs
- TemplateBuilder.cs
- SqlClientWrapperSmiStreamChars.cs
- HtmlInputSubmit.cs
- SystemResourceHost.cs
- XmlSchemaInfo.cs
- AutomationPatternInfo.cs
- securestring.cs
- ListViewEditEventArgs.cs
- PenThreadPool.cs
- SchemaImporter.cs
- PartialTrustVisibleAssembliesSection.cs
- ValidationErrorCollection.cs
- ValidatedMobileControlConverter.cs
- ApplicationGesture.cs
- FixedSOMContainer.cs
- HwndTarget.cs
- SmiTypedGetterSetter.cs
- IgnoreDataMemberAttribute.cs
- TagPrefixInfo.cs
- AnimationTimeline.cs
- InstanceDataCollection.cs
- DesignerTransactionCloseEvent.cs
- XPathExpr.cs
- XmlLanguage.cs
- SQLByteStorage.cs
- FaultDesigner.cs
- StackOverflowException.cs
- StylusEventArgs.cs
- DefaultTextStoreTextComposition.cs
- Soap.cs
- DesignerCatalogPartChrome.cs
- NetMsmqSecurity.cs
- UnitySerializationHolder.cs
- SafeBitVector32.cs
- UrlAuthFailureHandler.cs
- ExeContext.cs
- BuildResultCache.cs
- TableCell.cs