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

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SqlDataSourceCommandParser.cs
- UrlMappingsModule.cs
- WebRequestModulesSection.cs
- XmlArrayItemAttributes.cs
- Int32Storage.cs
- CanonicalizationDriver.cs
- RotateTransform3D.cs
- SqlConnectionStringBuilder.cs
- RawUIStateInputReport.cs
- StylusPointPropertyUnit.cs
- TextProperties.cs
- ManagementOptions.cs
- SHA256Managed.cs
- Speller.cs
- ActiveXSite.cs
- BitmapDownload.cs
- BitmapEffect.cs
- DateTimeOffset.cs
- DbgUtil.cs
- MILUtilities.cs
- PtsPage.cs
- AnimationTimeline.cs
- PrintEvent.cs
- XPathException.cs
- CollectionConverter.cs
- FontSourceCollection.cs
- TextBoxBaseDesigner.cs
- DefaultParameterValueAttribute.cs
- ProjectedSlot.cs
- StrokeNodeData.cs
- ObjectDisposedException.cs
- ICspAsymmetricAlgorithm.cs
- XmlSignificantWhitespace.cs
- TemplatedAdorner.cs
- DoubleLink.cs
- IODescriptionAttribute.cs
- GeneralTransform3D.cs
- SamlSubject.cs
- TextSpan.cs
- PageStatePersister.cs
- UserNameSecurityToken.cs
- FileSecurity.cs
- BuildProvidersCompiler.cs
- SecurityState.cs
- HttpDebugHandler.cs
- CheckBox.cs
- ObjectPersistData.cs
- XslTransform.cs
- Ops.cs
- SafeNativeMethods.cs
- LogRestartAreaEnumerator.cs
- FormatConvertedBitmap.cs
- CollectionViewGroupInternal.cs
- WindowsScroll.cs
- TextUtf8RawTextWriter.cs
- PropertyNames.cs
- TextBox.cs
- LinqDataSourceDisposeEventArgs.cs
- PointIndependentAnimationStorage.cs
- ResourceBinder.cs
- ParsedAttributeCollection.cs
- documentsequencetextpointer.cs
- TextRangeEdit.cs
- OptimalBreakSession.cs
- UnorderedHashRepartitionStream.cs
- EventLogEntry.cs
- ThousandthOfEmRealPoints.cs
- ProcessHostFactoryHelper.cs
- PathNode.cs
- RowSpanVector.cs
- PrintDialogException.cs
- Stylus.cs
- RequestCachePolicyConverter.cs
- StorageEntityContainerMapping.cs
- ColorTransformHelper.cs
- IPAddress.cs
- MultipartContentParser.cs
- TabControlAutomationPeer.cs
- ScrollBarAutomationPeer.cs
- SynchronizedKeyedCollection.cs
- DynamicDiscoSearcher.cs
- BufferedStream.cs
- SQLInt16Storage.cs
- KeyedHashAlgorithm.cs
- CatalogZoneBase.cs
- XPathDocumentNavigator.cs
- ComponentConverter.cs
- ToggleButtonAutomationPeer.cs
- DefaultDialogButtons.cs
- Identity.cs
- TextTreeUndoUnit.cs
- smtppermission.cs
- BaseAsyncResult.cs
- ResourceKey.cs
- ServiceDesigner.xaml.cs
- ClientTarget.cs
- RawStylusInputCustomData.cs
- _TimerThread.cs
- AttributeAction.cs
- MarshalByValueComponent.cs