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
- SyntaxCheck.cs
- ClaimTypes.cs
- DelayedRegex.cs
- AssemblyInfo.cs
- MaterialGroup.cs
- SqlAliaser.cs
- WindowsTab.cs
- DataServiceQueryContinuation.cs
- ToolStripDropTargetManager.cs
- PointUtil.cs
- FontStretchConverter.cs
- SourceSwitch.cs
- ProxyAttribute.cs
- _AutoWebProxyScriptEngine.cs
- LambdaCompiler.Binary.cs
- FocusWithinProperty.cs
- StorageMappingFragment.cs
- wmiutil.cs
- MessageAction.cs
- FilteredDataSetHelper.cs
- CustomBindingElement.cs
- SoapProtocolImporter.cs
- XmlDigitalSignatureProcessor.cs
- HTMLTextWriter.cs
- SeekStoryboard.cs
- ParamArrayAttribute.cs
- DataGridViewUtilities.cs
- EventLogEntryCollection.cs
- HtmlHead.cs
- newinstructionaction.cs
- EllipticalNodeOperations.cs
- WebPartVerbsEventArgs.cs
- TimeSpan.cs
- DocumentReferenceCollection.cs
- VisualState.cs
- Accessors.cs
- NotSupportedException.cs
- BitVec.cs
- ThreadStaticAttribute.cs
- HtmlImage.cs
- DataGridRow.cs
- SmtpSection.cs
- MessageRpc.cs
- RecoverInstanceLocksCommand.cs
- XmlILCommand.cs
- FamilyTypefaceCollection.cs
- DataBoundControl.cs
- ExpandoObject.cs
- MimeTypeMapper.cs
- PasswordDeriveBytes.cs
- ExpressionEditorAttribute.cs
- BitmapCodecInfoInternal.cs
- RowToFieldTransformer.cs
- SystemIPGlobalProperties.cs
- ConstructorNeedsTagAttribute.cs
- DrawingContext.cs
- SignatureToken.cs
- TabItemWrapperAutomationPeer.cs
- SymDocumentType.cs
- UserControl.cs
- XmlNullResolver.cs
- _CacheStreams.cs
- StaticSiteMapProvider.cs
- SafeNativeMethods.cs
- Library.cs
- ContextBase.cs
- SchemaTypeEmitter.cs
- UrlMappingsModule.cs
- Version.cs
- StringPropertyBuilder.cs
- ResourceCategoryAttribute.cs
- PropertyGeneratedEventArgs.cs
- LockCookie.cs
- HtmlInputControl.cs
- UnsafeNativeMethodsCLR.cs
- SelectedGridItemChangedEvent.cs
- SQLConvert.cs
- QueryPageSettingsEventArgs.cs
- BufferedResponseStream.cs
- FacetEnabledSchemaElement.cs
- ListParagraph.cs
- EventDriven.cs
- DataGridViewLayoutData.cs
- CodeIndexerExpression.cs
- PrimitiveSchema.cs
- BooleanFacetDescriptionElement.cs
- RunInstallerAttribute.cs
- WorkflowPageSetupDialog.cs
- WebPartVerb.cs
- LinkConverter.cs
- DBNull.cs
- MissingMemberException.cs
- dataprotectionpermission.cs
- PanelStyle.cs
- ReflectionServiceProvider.cs
- TypedColumnHandler.cs
- DebuggerAttributes.cs
- SqlServer2KCompatibilityCheck.cs
- WmpBitmapEncoder.cs
- AppSettingsReader.cs