Code:
/ 4.0 / 4.0 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ExtensionSimplifierMarkupObject.cs
- ObjectNotFoundException.cs
- AutoScrollHelper.cs
- HebrewNumber.cs
- ParamArrayAttribute.cs
- RNGCryptoServiceProvider.cs
- KerberosSecurityTokenProvider.cs
- DocumentPageViewAutomationPeer.cs
- UnicastIPAddressInformationCollection.cs
- GroupBox.cs
- ConfigXmlCDataSection.cs
- StrongNamePublicKeyBlob.cs
- MemberInfoSerializationHolder.cs
- DebugTraceHelper.cs
- KeyFrames.cs
- ModelPropertyDescriptor.cs
- _FtpControlStream.cs
- NativeRecognizer.cs
- CodeBlockBuilder.cs
- ZipIOCentralDirectoryBlock.cs
- CodeMemberMethod.cs
- ScalarType.cs
- ChannelBinding.cs
- XmlAttributes.cs
- WSSecurityXXX2005.cs
- DataGridItemEventArgs.cs
- UnescapedXmlDiagnosticData.cs
- PathStreamGeometryContext.cs
- PropertyManager.cs
- CharEntityEncoderFallback.cs
- ClientSideQueueItem.cs
- HttpCachePolicyElement.cs
- XmlUTF8TextWriter.cs
- DataColumn.cs
- CapabilitiesAssignment.cs
- DurableInstancingOptions.cs
- SizeAnimation.cs
- XmlCountingReader.cs
- StyleXamlParser.cs
- BindingBase.cs
- Int32KeyFrameCollection.cs
- NotSupportedException.cs
- QilStrConcatenator.cs
- AutomationPeer.cs
- Content.cs
- EntityDataSourceView.cs
- XsdBuildProvider.cs
- TemplatedMailWebEventProvider.cs
- WebHeaderCollection.cs
- HttpHandler.cs
- DefaultParameterValueAttribute.cs
- PeerCollaboration.cs
- mediaclock.cs
- WebScriptClientGenerator.cs
- FusionWrap.cs
- AttributeProviderAttribute.cs
- DependencyPropertyDescriptor.cs
- Nullable.cs
- ColorTransform.cs
- AppLevelCompilationSectionCache.cs
- XamlVector3DCollectionSerializer.cs
- XPathDocumentNavigator.cs
- HMACMD5.cs
- basecomparevalidator.cs
- PageCache.cs
- ProfilePropertySettingsCollection.cs
- RawTextInputReport.cs
- AppliedDeviceFiltersDialog.cs
- Argument.cs
- RoleServiceManager.cs
- HostedImpersonationContext.cs
- EdmType.cs
- LinkLabel.cs
- CustomTypeDescriptor.cs
- IMembershipProvider.cs
- MetabaseReader.cs
- DesignerDeviceConfig.cs
- CodeNamespaceImport.cs
- SubstitutionResponseElement.cs
- PropertyMapper.cs
- TreeNodeClickEventArgs.cs
- WebContext.cs
- ConfigXmlDocument.cs
- SmtpNtlmAuthenticationModule.cs
- RadioButtonList.cs
- SourceCollection.cs
- StorageEntityContainerMapping.cs
- SchemaImporter.cs
- ContextBase.cs
- _SSPIWrapper.cs
- AttributeInfo.cs
- EntryPointNotFoundException.cs
- TemplatedEditableDesignerRegion.cs
- VBIdentifierTrimConverter.cs
- precedingsibling.cs
- CodeDelegateCreateExpression.cs
- PathParser.cs
- ParameterCollection.cs
- GrammarBuilderDictation.cs
- UnmanagedMemoryStreamWrapper.cs