Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Services / Web / System / Web / Services / Description / MimeParameters.cs / 1305376 / MimeParameters.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Services.Description { using System.Web.Services; using System.Web.Services.Protocols; using System.Xml.Serialization; using System.Xml.Schema; using System.Collections; using System; using System.Reflection; internal class MimeParameterCollection : CollectionBase { Type writerType; internal Type WriterType { get { return writerType; } set { writerType = value; } } internal MimeParameter this[int index] { get { return (MimeParameter)List[index]; } set { List[index] = value; } } internal int Add(MimeParameter parameter) { return List.Add(parameter); } internal void Insert(int index, MimeParameter parameter) { List.Insert(index, parameter); } internal int IndexOf(MimeParameter parameter) { return List.IndexOf(parameter); } internal bool Contains(MimeParameter parameter) { return List.Contains(parameter); } internal void Remove(MimeParameter parameter) { List.Remove(parameter); } internal void CopyTo(MimeParameter[] array, int index) { List.CopyTo(array, index); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Services.Description { using System.Web.Services; using System.Web.Services.Protocols; using System.Xml.Serialization; using System.Xml.Schema; using System.Collections; using System; using System.Reflection; internal class MimeParameterCollection : CollectionBase { Type writerType; internal Type WriterType { get { return writerType; } set { writerType = value; } } internal MimeParameter this[int index] { get { return (MimeParameter)List[index]; } set { List[index] = value; } } internal int Add(MimeParameter parameter) { return List.Add(parameter); } internal void Insert(int index, MimeParameter parameter) { List.Insert(index, parameter); } internal int IndexOf(MimeParameter parameter) { return List.IndexOf(parameter); } internal bool Contains(MimeParameter parameter) { return List.Contains(parameter); } internal void Remove(MimeParameter parameter) { List.Remove(parameter); } internal void CopyTo(MimeParameter[] array, int index) { List.CopyTo(array, index); } } } // 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
- COM2PropertyDescriptor.cs
- SetIterators.cs
- ControlType.cs
- StringBuilder.cs
- DeleteWorkflowOwnerCommand.cs
- DataServiceException.cs
- PageFunction.cs
- UdpUtility.cs
- __ConsoleStream.cs
- GCHandleCookieTable.cs
- Stackframe.cs
- SafeRegistryHandle.cs
- SpellCheck.cs
- InputScopeConverter.cs
- HyperLinkDataBindingHandler.cs
- CompilerScope.Storage.cs
- SqlWriter.cs
- AddInSegmentDirectoryNotFoundException.cs
- DataSetFieldSchema.cs
- SignatureGenerator.cs
- XmlAttributeProperties.cs
- Canvas.cs
- HtmlTernaryTree.cs
- RuntimeArgumentHandle.cs
- CheckBoxField.cs
- SapiAttributeParser.cs
- ClientConfigPaths.cs
- ProcessStartInfo.cs
- RightsManagementPermission.cs
- ThreadExceptionEvent.cs
- RadioButtonPopupAdapter.cs
- URL.cs
- DataSourceProvider.cs
- CodeLinePragma.cs
- BufferBuilder.cs
- TemplateBamlTreeBuilder.cs
- XmlAtomicValue.cs
- ByteAnimation.cs
- DataGridViewRowHeaderCell.cs
- ReadOnlyDataSourceView.cs
- BigInt.cs
- DictionaryEntry.cs
- SecurityContext.cs
- CompilerGlobalScopeAttribute.cs
- AdRotatorDesigner.cs
- ISAPIRuntime.cs
- DataControlImageButton.cs
- QueryActivatableWorkflowsCommand.cs
- StreamReader.cs
- SendKeys.cs
- ControlBuilderAttribute.cs
- SyndicationLink.cs
- CopyCodeAction.cs
- MailHeaderInfo.cs
- BaseDataBoundControl.cs
- Int32Collection.cs
- Membership.cs
- ConfigXmlWhitespace.cs
- RegexReplacement.cs
- StringAttributeCollection.cs
- BinaryConverter.cs
- StylusPlugInCollection.cs
- GridViewPageEventArgs.cs
- LayoutExceptionEventArgs.cs
- AnonymousIdentificationSection.cs
- GeneralTransform3DTo2D.cs
- PointValueSerializer.cs
- XmlChildEnumerator.cs
- HTTPNotFoundHandler.cs
- CompilationUtil.cs
- Decoder.cs
- FontNameEditor.cs
- Thread.cs
- DefaultValueAttribute.cs
- DataSvcMapFile.cs
- BoundField.cs
- SafeNativeMethods.cs
- RemoteHelper.cs
- CanonicalFontFamilyReference.cs
- CheckBoxBaseAdapter.cs
- StateMachineAction.cs
- BindingOperations.cs
- VectorKeyFrameCollection.cs
- PickDesigner.xaml.cs
- SqlNodeTypeOperators.cs
- ElapsedEventArgs.cs
- LocationSectionRecord.cs
- SelectedCellsCollection.cs
- LocatorBase.cs
- TreeBuilder.cs
- StrokeIntersection.cs
- WCFModelStrings.Designer.cs
- TextEditorLists.cs
- WebPartZoneAutoFormat.cs
- SqlTriggerAttribute.cs
- DiscoveryCallbackBehavior.cs
- MarshalDirectiveException.cs
- SqlGenericUtil.cs
- GeneratedCodeAttribute.cs
- SuppressMessageAttribute.cs