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

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Block.cs
- ToolStripOverflowButton.cs
- FindResponse.cs
- ButtonBase.cs
- DbProviderFactories.cs
- FixedTextBuilder.cs
- TableColumnCollection.cs
- InputBuffer.cs
- IpcPort.cs
- KeyedCollection.cs
- DesignerSerializationVisibilityAttribute.cs
- ObjectAssociationEndMapping.cs
- InstancePersistenceEvent.cs
- CopyCodeAction.cs
- SmiSettersStream.cs
- MouseDevice.cs
- DataDocumentXPathNavigator.cs
- EntityTemplateFactory.cs
- XmlAttributeCollection.cs
- HMAC.cs
- Speller.cs
- ChangeProcessor.cs
- ConnectionConsumerAttribute.cs
- SiteMapNodeCollection.cs
- TypeForwardedFromAttribute.cs
- METAHEADER.cs
- EndpointBehaviorElement.cs
- RelationshipFixer.cs
- OrderedDictionary.cs
- SmiRecordBuffer.cs
- FormViewModeEventArgs.cs
- ListenerSessionConnectionReader.cs
- ColorBlend.cs
- WorkflowMarkupSerializationManager.cs
- Parameter.cs
- BypassElement.cs
- LineServicesCallbacks.cs
- CapacityStreamGeometryContext.cs
- UnmanagedBitmapWrapper.cs
- SqlDelegatedTransaction.cs
- ArgumentFixer.cs
- RemotingException.cs
- HttpAsyncResult.cs
- ImageSource.cs
- BindingManagerDataErrorEventArgs.cs
- TypeLibConverter.cs
- RSAPKCS1KeyExchangeDeformatter.cs
- OutputCacheSection.cs
- HttpCookieCollection.cs
- Stack.cs
- AutoGeneratedFieldProperties.cs
- ReadOnlyDataSource.cs
- MenuItemStyle.cs
- _DomainName.cs
- InstanceNotReadyException.cs
- DrawingCollection.cs
- CompatibleIComparer.cs
- LogArchiveSnapshot.cs
- KeyTimeConverter.cs
- TheQuery.cs
- Vector3DIndependentAnimationStorage.cs
- XmlParserContext.cs
- FilterElement.cs
- PictureBox.cs
- RealProxy.cs
- ReservationCollection.cs
- PropertyMapper.cs
- RegexWorker.cs
- AssemblyUtil.cs
- TraceContext.cs
- Rights.cs
- ThreadAbortException.cs
- GlobalProxySelection.cs
- SpnegoTokenAuthenticator.cs
- Stylus.cs
- SecurityHelper.cs
- SubstitutionList.cs
- DataGridViewRowsAddedEventArgs.cs
- URL.cs
- HashCodeCombiner.cs
- CodeAttributeArgumentCollection.cs
- ListenerAdapter.cs
- PortCache.cs
- xml.cs
- ScriptResourceInfo.cs
- SqlDataSourceFilteringEventArgs.cs
- IsolatedStorageFilePermission.cs
- WebPartEditorApplyVerb.cs
- TextTreeRootTextBlock.cs
- RowVisual.cs
- DecimalAnimationBase.cs
- COM2ExtendedBrowsingHandler.cs
- SolidColorBrush.cs
- InstanceValue.cs
- DataGridViewRowContextMenuStripNeededEventArgs.cs
- QuaternionKeyFrameCollection.cs
- FormatSettings.cs
- CustomCategoryAttribute.cs
- PropertyContainer.cs
- GridViewRowPresenterBase.cs