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
- Baml6ConstructorInfo.cs
- CodeMemberEvent.cs
- SafeRightsManagementSessionHandle.cs
- TokenizerHelper.cs
- Vector3DIndependentAnimationStorage.cs
- WindowsGraphics2.cs
- ScrollableControl.cs
- SequentialWorkflowRootDesigner.cs
- ContentElement.cs
- Win32Native.cs
- ObjectSet.cs
- Polyline.cs
- IPipelineRuntime.cs
- AccessedThroughPropertyAttribute.cs
- ConnectionManagementElementCollection.cs
- TextViewDesigner.cs
- Pointer.cs
- Propagator.cs
- JsonGlobals.cs
- BindingExpressionUncommonField.cs
- SqlBinder.cs
- CommonGetThemePartSize.cs
- FileEnumerator.cs
- MediaPlayer.cs
- DesignerCommandSet.cs
- LinqDataSourceView.cs
- XMLDiffLoader.cs
- HttpCacheVaryByContentEncodings.cs
- RenderDataDrawingContext.cs
- xml.cs
- TextEditorCharacters.cs
- IODescriptionAttribute.cs
- CharAnimationUsingKeyFrames.cs
- WsdlHelpGeneratorElement.cs
- StringFormat.cs
- StorageAssociationSetMapping.cs
- PasswordTextNavigator.cs
- PassportPrincipal.cs
- GeneralTransform2DTo3DTo2D.cs
- NamespaceDisplay.xaml.cs
- WorkflowView.cs
- MD5.cs
- ClientSponsor.cs
- TypeConverterAttribute.cs
- DataGridViewCellMouseEventArgs.cs
- MimeFormatExtensions.cs
- InfoCardRSAPKCS1SignatureDeformatter.cs
- DbDataSourceEnumerator.cs
- DataSourceSelectArguments.cs
- NavigationProgressEventArgs.cs
- CodeComment.cs
- TdsEnums.cs
- HTMLTagNameToTypeMapper.cs
- StackSpiller.Temps.cs
- ResourceDisplayNameAttribute.cs
- CopyAction.cs
- ConfigurationManagerHelper.cs
- XamlParser.cs
- CursorInteropHelper.cs
- SnapLine.cs
- securitymgrsite.cs
- DrawingBrush.cs
- Reference.cs
- InfiniteIntConverter.cs
- DataGridSortCommandEventArgs.cs
- util.cs
- GlyphRun.cs
- DiscoveryVersionConverter.cs
- WebPartEventArgs.cs
- path.cs
- AssemblyCollection.cs
- Interlocked.cs
- WindowsGraphicsCacheManager.cs
- LocalIdCollection.cs
- Graphics.cs
- InheritedPropertyDescriptor.cs
- SafeFileMapViewHandle.cs
- OdbcCommand.cs
- XmlSchemaImport.cs
- MarkedHighlightComponent.cs
- Expression.cs
- Parser.cs
- bidPrivateBase.cs
- WmlCommandAdapter.cs
- ColorBlend.cs
- ChangesetResponse.cs
- TypeSource.cs
- PersonalizationStateInfoCollection.cs
- HostedHttpContext.cs
- AppAction.cs
- ObservableDictionary.cs
- ExpressionBindingCollection.cs
- WebBrowserEvent.cs
- HttpRuntimeSection.cs
- ToolboxControl.cs
- coordinatorfactory.cs
- ColumnHeader.cs
- TemplatedMailWebEventProvider.cs
- OverflowException.cs
- CheckBoxStandardAdapter.cs