Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Abstractions / HttpFileCollectionWrapper.cs / 1305376 / HttpFileCollectionWrapper.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web { using System; using System.Collections; using System.Collections.Specialized; using System.Diagnostics.CodeAnalysis; using System.Runtime.Serialization; using System.Security.Permissions; using System.Runtime.CompilerServices; [TypeForwardedFrom("System.Web.Abstractions, Version=3.5.0.0, Culture=Neutral, PublicKeyToken=31bf3856ad364e35")] [SuppressMessage("Microsoft.Security", "CA2126:TypeLinkDemandsRequireInheritanceDemands", Justification = "Workaround for FxCop Bug")] [SuppressMessage("Microsoft.Naming", "CA1710:IdentifiersShouldHaveCorrectSuffix", Justification = "This type is an abstraction for HttpFileCollection.")] public class HttpFileCollectionWrapper : HttpFileCollectionBase { private HttpFileCollection _collection; public HttpFileCollectionWrapper(HttpFileCollection httpFileCollection) { if (httpFileCollection == null) { throw new ArgumentNullException("httpFileCollection"); } _collection = httpFileCollection; } public override string[] AllKeys { get { return _collection.AllKeys; } } public override int Count { get { return ((ICollection)_collection).Count; } } public override bool IsSynchronized { get { return ((ICollection)_collection).IsSynchronized; } } [SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] public override NameObjectCollectionBase.KeysCollection Keys { get { return _collection.Keys; } } public override object SyncRoot { get { return ((ICollection)_collection).SyncRoot; } } public override HttpPostedFileBase this[string name] { get { HttpPostedFile file = _collection[name]; return (file != null) ? new HttpPostedFileWrapper(file) : null; } } public override HttpPostedFileBase this[int index] { get { HttpPostedFile file = _collection[index]; return (file != null) ? new HttpPostedFileWrapper(file) : null; } } public override void CopyTo(Array dest, int index) { _collection.CopyTo(dest, index); } public override HttpPostedFileBase Get(int index) { HttpPostedFile file = _collection.Get(index); return (file != null) ? new HttpPostedFileWrapper(file) : null; } public override HttpPostedFileBase Get(string name) { HttpPostedFile file = _collection.Get(name); return (file != null) ? new HttpPostedFileWrapper(file) : null; } public override IEnumerator GetEnumerator() { return ((IEnumerable)_collection).GetEnumerator(); } public override string GetKey(int index) { return _collection.GetKey(index); } [SuppressMessage("Microsoft.Security", "CA2114:MethodSecurityShouldBeASupersetOfType", Justification = "Workaround for FxCop Bug")] [SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] [SecurityPermission(SecurityAction.Demand, SerializationFormatter=true)] public override void GetObjectData(SerializationInfo info, StreamingContext context) { _collection.GetObjectData(info, context); } [SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] public override void OnDeserialization(object sender) { _collection.OnDeserialization(sender); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web { using System; using System.Collections; using System.Collections.Specialized; using System.Diagnostics.CodeAnalysis; using System.Runtime.Serialization; using System.Security.Permissions; using System.Runtime.CompilerServices; [TypeForwardedFrom("System.Web.Abstractions, Version=3.5.0.0, Culture=Neutral, PublicKeyToken=31bf3856ad364e35")] [SuppressMessage("Microsoft.Security", "CA2126:TypeLinkDemandsRequireInheritanceDemands", Justification = "Workaround for FxCop Bug")] [SuppressMessage("Microsoft.Naming", "CA1710:IdentifiersShouldHaveCorrectSuffix", Justification = "This type is an abstraction for HttpFileCollection.")] public class HttpFileCollectionWrapper : HttpFileCollectionBase { private HttpFileCollection _collection; public HttpFileCollectionWrapper(HttpFileCollection httpFileCollection) { if (httpFileCollection == null) { throw new ArgumentNullException("httpFileCollection"); } _collection = httpFileCollection; } public override string[] AllKeys { get { return _collection.AllKeys; } } public override int Count { get { return ((ICollection)_collection).Count; } } public override bool IsSynchronized { get { return ((ICollection)_collection).IsSynchronized; } } [SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] public override NameObjectCollectionBase.KeysCollection Keys { get { return _collection.Keys; } } public override object SyncRoot { get { return ((ICollection)_collection).SyncRoot; } } public override HttpPostedFileBase this[string name] { get { HttpPostedFile file = _collection[name]; return (file != null) ? new HttpPostedFileWrapper(file) : null; } } public override HttpPostedFileBase this[int index] { get { HttpPostedFile file = _collection[index]; return (file != null) ? new HttpPostedFileWrapper(file) : null; } } public override void CopyTo(Array dest, int index) { _collection.CopyTo(dest, index); } public override HttpPostedFileBase Get(int index) { HttpPostedFile file = _collection.Get(index); return (file != null) ? new HttpPostedFileWrapper(file) : null; } public override HttpPostedFileBase Get(string name) { HttpPostedFile file = _collection.Get(name); return (file != null) ? new HttpPostedFileWrapper(file) : null; } public override IEnumerator GetEnumerator() { return ((IEnumerable)_collection).GetEnumerator(); } public override string GetKey(int index) { return _collection.GetKey(index); } [SuppressMessage("Microsoft.Security", "CA2114:MethodSecurityShouldBeASupersetOfType", Justification = "Workaround for FxCop Bug")] [SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] [SecurityPermission(SecurityAction.Demand, SerializationFormatter=true)] public override void GetObjectData(SerializationInfo info, StreamingContext context) { _collection.GetObjectData(info, context); } [SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] public override void OnDeserialization(object sender) { _collection.OnDeserialization(sender); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- KoreanLunisolarCalendar.cs
- EndEvent.cs
- SQLBinaryStorage.cs
- VirtualPathUtility.cs
- JsonFormatReaderGenerator.cs
- CustomAttributeBuilder.cs
- UrlAuthFailedErrorFormatter.cs
- UshortList2.cs
- EntityDataSourceMemberPath.cs
- PackageStore.cs
- MemberAssignmentAnalysis.cs
- EUCJPEncoding.cs
- DefinitionProperties.cs
- CurrentChangedEventManager.cs
- WebPartConnectVerb.cs
- ToolTipAutomationPeer.cs
- TiffBitmapDecoder.cs
- ActiveXContainer.cs
- PlanCompilerUtil.cs
- NumericUpDownAccelerationCollection.cs
- FileDetails.cs
- BrowserTree.cs
- CombinedGeometry.cs
- complextypematerializer.cs
- RegistrationServices.cs
- QilGenerator.cs
- RIPEMD160.cs
- CodeMemberField.cs
- Metadata.cs
- RowToFieldTransformer.cs
- TypeLibConverter.cs
- TypeValidationEventArgs.cs
- CodeSubDirectory.cs
- PerformanceCounter.cs
- ReadOnlyDictionary.cs
- Soap.cs
- ClientRuntimeConfig.cs
- WindowsComboBox.cs
- NumberAction.cs
- Int64Converter.cs
- ActionFrame.cs
- HttpsTransportElement.cs
- NamespaceList.cs
- ReservationCollection.cs
- DispatcherSynchronizationContext.cs
- SpeechAudioFormatInfo.cs
- Point4DConverter.cs
- SqlCrossApplyToCrossJoin.cs
- TextDocumentView.cs
- RecognizerStateChangedEventArgs.cs
- DataGridViewColumnDividerDoubleClickEventArgs.cs
- TextModifier.cs
- HttpListenerResponse.cs
- ListManagerBindingsCollection.cs
- SemanticAnalyzer.cs
- SessionEndedEventArgs.cs
- DoubleConverter.cs
- TagPrefixInfo.cs
- ScrollBarRenderer.cs
- ResourceManager.cs
- HMACMD5.cs
- TextEditorParagraphs.cs
- RelationshipManager.cs
- ListView.cs
- SqlClientWrapperSmiStreamChars.cs
- GroupBox.cs
- ECDiffieHellmanCng.cs
- CultureInfoConverter.cs
- LocalizedNameDescriptionPair.cs
- EdmSchemaAttribute.cs
- TextSelectionHighlightLayer.cs
- Encoding.cs
- WindowShowOrOpenTracker.cs
- LowerCaseStringConverter.cs
- HttpRawResponse.cs
- CompiledRegexRunnerFactory.cs
- GridItemPattern.cs
- XmlDocumentFragment.cs
- srgsitem.cs
- IChannel.cs
- EncoderParameters.cs
- BlurBitmapEffect.cs
- RegexStringValidatorAttribute.cs
- MenuItemStyle.cs
- DeferredSelectedIndexReference.cs
- sqlser.cs
- MdbDataFileEditor.cs
- SqlRemoveConstantOrderBy.cs
- Set.cs
- EventListener.cs
- PagesSection.cs
- WebPartAddingEventArgs.cs
- TableItemStyle.cs
- CounterSample.cs
- ExpressionQuoter.cs
- RSAPKCS1SignatureDeformatter.cs
- HostingEnvironment.cs
- mda.cs
- QilBinary.cs
- BamlVersionHeader.cs