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;
///
///
/// [To be supplied.]
///
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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DES.cs
- PrintDialog.cs
- EntitySetDataBindingList.cs
- httpapplicationstate.cs
- Monitor.cs
- FtpRequestCacheValidator.cs
- DeobfuscatingStream.cs
- NameValueCollection.cs
- CustomLineCap.cs
- DocumentViewerBase.cs
- AddInProcess.cs
- Certificate.cs
- Int16KeyFrameCollection.cs
- QilInvokeLateBound.cs
- MULTI_QI.cs
- TimeStampChecker.cs
- Visual3DCollection.cs
- SqlTriggerContext.cs
- AccessKeyManager.cs
- SubclassTypeValidator.cs
- HttpConfigurationSystem.cs
- FormattedTextSymbols.cs
- RijndaelManaged.cs
- DateTimeStorage.cs
- GridPattern.cs
- CallbackException.cs
- NegatedConstant.cs
- TreeChangeInfo.cs
- BaseDataBoundControl.cs
- SafeThemeHandle.cs
- DateRangeEvent.cs
- PagerSettings.cs
- ToolboxBitmapAttribute.cs
- ValueTable.cs
- Util.cs
- NameValuePair.cs
- BuilderInfo.cs
- _NetworkingPerfCounters.cs
- xsdvalidator.cs
- ModelService.cs
- ISCIIEncoding.cs
- XsltCompileContext.cs
- WebPartMinimizeVerb.cs
- StartUpEventArgs.cs
- SourceFileInfo.cs
- LOSFormatter.cs
- CalendarAutoFormatDialog.cs
- RemoveStoryboard.cs
- BinaryParser.cs
- BoolExpression.cs
- Int32Collection.cs
- TypedDataSourceCodeGenerator.cs
- HiddenField.cs
- SharedPerformanceCounter.cs
- DataServiceExpressionVisitor.cs
- InfoCardKeyedHashAlgorithm.cs
- WindowShowOrOpenTracker.cs
- Substitution.cs
- ArgumentException.cs
- BaseUriHelper.cs
- BitSet.cs
- StoreContentChangedEventArgs.cs
- XPathPatternParser.cs
- RegistrationServices.cs
- ResourceDisplayNameAttribute.cs
- SrgsDocumentParser.cs
- SqlDataSourceCommandEventArgs.cs
- CollectionBuilder.cs
- AppModelKnownContentFactory.cs
- ClientUtils.cs
- HttpListenerContext.cs
- SoapHeaderAttribute.cs
- QueryConverter.cs
- XmlSchemaAttributeGroupRef.cs
- SQLBinaryStorage.cs
- SynthesizerStateChangedEventArgs.cs
- BoolExpressionVisitors.cs
- ManipulationStartingEventArgs.cs
- ContentPresenter.cs
- DataObject.cs
- UnhandledExceptionEventArgs.cs
- DefaultExpression.cs
- RegexFCD.cs
- VerificationAttribute.cs
- DBCommand.cs
- HttpRequest.cs
- WebMessageEncodingElement.cs
- PropertyChangedEventArgs.cs
- WS2007FederationHttpBinding.cs
- ToolboxItemFilterAttribute.cs
- FontFamily.cs
- ValueType.cs
- HttpConfigurationContext.cs
- DtdParser.cs
- DatagridviewDisplayedBandsData.cs
- LineProperties.cs
- MouseCaptureWithinProperty.cs
- DataMisalignedException.cs
- VideoDrawing.cs
- EventLogPermissionEntry.cs