Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Xml / System / Xml / Serialization / XmlElementAttributes.cs / 1305376 / 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.[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- HttpRequestBase.cs
- RuleSettings.cs
- IdentityValidationException.cs
- HwndStylusInputProvider.cs
- BaseTemplateBuildProvider.cs
- TextParaClient.cs
- UserNamePasswordValidator.cs
- PerformanceCounterPermissionEntryCollection.cs
- ShaperBuffers.cs
- XPathSingletonIterator.cs
- MergeFilterQuery.cs
- SolidBrush.cs
- SynchronizingStream.cs
- CachedFontFamily.cs
- Convert.cs
- SerializationEventsCache.cs
- SimpleHandlerBuildProvider.cs
- _CookieModule.cs
- FileUtil.cs
- OdbcPermission.cs
- CodeLinePragma.cs
- SystemColorTracker.cs
- nulltextnavigator.cs
- ViewBox.cs
- RecordBuilder.cs
- DispatcherSynchronizationContext.cs
- AsyncCompletedEventArgs.cs
- RSAOAEPKeyExchangeDeformatter.cs
- PropertyPathConverter.cs
- DesignerResources.cs
- DataPagerFieldCollection.cs
- NameValueSectionHandler.cs
- PersistNameAttribute.cs
- TabItem.cs
- HTMLTagNameToTypeMapper.cs
- ObjectDataSourceEventArgs.cs
- AccessorTable.cs
- PageCodeDomTreeGenerator.cs
- HttpPostedFileWrapper.cs
- GeneralTransform2DTo3DTo2D.cs
- ImageAutomationPeer.cs
- WebPartAddingEventArgs.cs
- HtmlForm.cs
- ValueTypePropertyReference.cs
- RectValueSerializer.cs
- EarlyBoundInfo.cs
- CmsInterop.cs
- FlowDocumentReader.cs
- MeasurementDCInfo.cs
- KeysConverter.cs
- Avt.cs
- ContextInformation.cs
- CssTextWriter.cs
- SoapIgnoreAttribute.cs
- Italic.cs
- AppDomainShutdownMonitor.cs
- XmlEncodedRawTextWriter.cs
- ColumnPropertiesGroup.cs
- MsmqIntegrationProcessProtocolHandler.cs
- HttpCookiesSection.cs
- SmiTypedGetterSetter.cs
- TraceContext.cs
- VisualStyleTypesAndProperties.cs
- PageCache.cs
- NetworkInformationException.cs
- PropertyCondition.cs
- DateTimeValueSerializerContext.cs
- ItemMap.cs
- ProcessModelInfo.cs
- ParseElementCollection.cs
- ProfilePropertySettings.cs
- DataBindingList.cs
- ElementProxy.cs
- DbInsertCommandTree.cs
- RelOps.cs
- DesignSurfaceManager.cs
- QuestionEventArgs.cs
- ZipIOZip64EndOfCentralDirectoryBlock.cs
- InputLangChangeEvent.cs
- srgsitem.cs
- SQLInt32.cs
- XmlSchemaCompilationSettings.cs
- Pair.cs
- SetterBase.cs
- CellTreeNodeVisitors.cs
- SynchronizedDispatch.cs
- UIElement3DAutomationPeer.cs
- WebBrowserNavigatingEventHandler.cs
- DashStyles.cs
- SessionEndingEventArgs.cs
- WindowsEditBoxRange.cs
- WindowsImpersonationContext.cs
- LockCookie.cs
- LazyTextWriterCreator.cs
- KnownTypesProvider.cs
- HtmlImage.cs
- MemberDescriptor.cs
- FormsIdentity.cs
- SelectionHighlightInfo.cs
- NegationPusher.cs