Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Xml / System / Xml / Serialization / XmlAnyElementAttributes.cs / 1 / XmlAnyElementAttributes.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// [....]
//-----------------------------------------------------------------------------
namespace System.Xml.Serialization {
using System;
using System.Reflection;
using System.Collections;
using System.ComponentModel;
///
///
/// [To be supplied.]
///
public class XmlAnyElementAttributes : CollectionBase {
///
///
/// [To be supplied.]
///
public XmlAnyElementAttribute this[int index] {
get { return (XmlAnyElementAttribute)List[index]; }
set { List[index] = value; }
}
///
///
/// [To be supplied.]
///
public int Add(XmlAnyElementAttribute attribute) {
return List.Add(attribute);
}
///
///
/// [To be supplied.]
///
public void Insert(int index, XmlAnyElementAttribute attribute) {
List.Insert(index, attribute);
}
///
///
/// [To be supplied.]
///
public int IndexOf(XmlAnyElementAttribute attribute) {
return List.IndexOf(attribute);
}
///
///
/// [To be supplied.]
///
public bool Contains(XmlAnyElementAttribute attribute) {
return List.Contains(attribute);
}
///
///
/// [To be supplied.]
///
public void Remove(XmlAnyElementAttribute attribute) {
List.Remove(attribute);
}
///
///
/// [To be supplied.]
///
public void CopyTo(XmlAnyElementAttribute[] 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XmlSchemaSequence.cs
- SslStream.cs
- Panel.cs
- TaskExceptionHolder.cs
- ToolStripItemCollection.cs
- XmlCustomFormatter.cs
- SerializationSectionGroup.cs
- BitmapEffectInput.cs
- PerformanceCounterNameAttribute.cs
- InstanceData.cs
- Compensate.cs
- ConfigurationLockCollection.cs
- WebControlsSection.cs
- FontStretch.cs
- DataGridViewComboBoxCell.cs
- RegexNode.cs
- AdRotator.cs
- HttpStreamMessage.cs
- Point3DCollectionValueSerializer.cs
- SoapObjectReader.cs
- CompositeActivityMarkupSerializer.cs
- XmlEntity.cs
- WebServiceHandler.cs
- LinkArea.cs
- TypeListConverter.cs
- KeyInterop.cs
- wgx_commands.cs
- SqlInternalConnectionSmi.cs
- BigInt.cs
- NativeMethods.cs
- IncrementalReadDecoders.cs
- SamlAuthorizationDecisionClaimResource.cs
- PathSegmentCollection.cs
- Root.cs
- UserControl.cs
- WindowsToolbarAsMenu.cs
- XmlArrayAttribute.cs
- WebPartManagerInternals.cs
- StateFinalizationActivity.cs
- CallbackHandler.cs
- CfgArc.cs
- NullToBooleanConverter.cs
- BooleanProjectedSlot.cs
- DataExpression.cs
- InternalSafeNativeMethods.cs
- DiscoveryMessageSequence11.cs
- ResXResourceSet.cs
- StylusShape.cs
- QueryCacheEntry.cs
- InputBindingCollection.cs
- DataSourceDesigner.cs
- ReferenceSchema.cs
- ImageCodecInfo.cs
- DesignerRegion.cs
- HideDisabledControlAdapter.cs
- AdvancedBindingEditor.cs
- DataControlFieldHeaderCell.cs
- HostSecurityManager.cs
- ClonableStack.cs
- XmlTextAttribute.cs
- MemberAccessException.cs
- ViewGenerator.cs
- RadialGradientBrush.cs
- WebPartEditorApplyVerb.cs
- SQLRoleProvider.cs
- ServiceHostFactory.cs
- DataGridViewComboBoxCell.cs
- MetadataArtifactLoaderComposite.cs
- XmlSchemaAnnotated.cs
- XsltException.cs
- UIPermission.cs
- PathSegment.cs
- Debug.cs
- EndOfStreamException.cs
- DataTemplate.cs
- SecurityChannelFactory.cs
- BitConverter.cs
- streamingZipPartStream.cs
- EditorZoneAutoFormat.cs
- LogLogRecord.cs
- PropertiesTab.cs
- ApplicationDirectory.cs
- BitmapEffectvisualstate.cs
- SearchForVirtualItemEventArgs.cs
- Permission.cs
- FactoryMaker.cs
- DragEvent.cs
- ResourcePool.cs
- BufferedGraphicsContext.cs
- FormsAuthenticationCredentials.cs
- PseudoWebRequest.cs
- ObjectCache.cs
- CommandManager.cs
- CacheDependency.cs
- SqlException.cs
- PeerContact.cs
- Query.cs
- AddingNewEventArgs.cs
- SqlDesignerDataSourceView.cs
- XmlBinaryReader.cs