Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Configuration / System / Configuration / ConfigurationCollectionAttribute.cs / 1305376 / ConfigurationCollectionAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.Configuration.Internal; using System.Collections; using System.Collections.Specialized; using System.Collections.Generic; using System.IO; using System.Reflection; using System.Security.Permissions; using System.Xml; using System.Globalization; using System.ComponentModel; using System.Security; using System.Text; using System.Configuration; namespace System.Configuration { // This attribute is expected on section properties of type derivied from ConfigurationElementCollection // or on the itself [AttributeUsage(AttributeTargets.Property | AttributeTargets.Class)] public sealed class ConfigurationCollectionAttribute : Attribute { private string _addItemName = null; private string _removeItemName = null; private string _clearItemsName = null; private Type _itemType = null; private ConfigurationElementCollectionType _collectionType = ConfigurationElementCollectionType.AddRemoveClearMap; public ConfigurationCollectionAttribute(Type itemType) { if (itemType == null) { throw new ArgumentNullException("itemType"); } _itemType = itemType; } public Type ItemType { get { return _itemType; } } public string AddItemName { get { if (_addItemName == null) { return ConfigurationElementCollection.DefaultAddItemName; } else { return _addItemName; } } set { if (string.IsNullOrEmpty(value)) { value = null; } _addItemName = value; } } public string RemoveItemName { get { if (_removeItemName == null) { return ConfigurationElementCollection.DefaultRemoveItemName; } else { return _removeItemName; } } set { if (string.IsNullOrEmpty(value)) { value = null; } _removeItemName = value; } } public string ClearItemsName { get { if (_clearItemsName == null) { return ConfigurationElementCollection.DefaultClearItemsName; } else { return _clearItemsName; } } set { if (string.IsNullOrEmpty(value)) { value = null; } _clearItemsName = value; } } public ConfigurationElementCollectionType CollectionType { get { return _collectionType; } set { _collectionType = value; } } } } // 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
- IDQuery.cs
- BoundField.cs
- ClientEventManager.cs
- DataGridRowClipboardEventArgs.cs
- UIElementIsland.cs
- EraserBehavior.cs
- WsdlEndpointConversionContext.cs
- RegexReplacement.cs
- ImageConverter.cs
- complextypematerializer.cs
- ListViewSelectEventArgs.cs
- FontUnitConverter.cs
- RepeatInfo.cs
- ObfuscateAssemblyAttribute.cs
- DesignerActionGlyph.cs
- WebErrorHandler.cs
- DispatcherSynchronizationContext.cs
- Thread.cs
- RSAOAEPKeyExchangeFormatter.cs
- CodeExpressionCollection.cs
- AxHost.cs
- ReaderContextStackData.cs
- DashStyles.cs
- MULTI_QI.cs
- EventArgs.cs
- DataTemplate.cs
- SystemWebExtensionsSectionGroup.cs
- SQLResource.cs
- COM2IVsPerPropertyBrowsingHandler.cs
- FileStream.cs
- BrushMappingModeValidation.cs
- ForAllOperator.cs
- RectangleHotSpot.cs
- ComponentFactoryHelpers.cs
- ColumnMapProcessor.cs
- ThreadStaticAttribute.cs
- SplayTreeNode.cs
- ReliableSessionBindingElement.cs
- FirstMatchCodeGroup.cs
- CacheRequest.cs
- NativeMethods.cs
- CompositionDesigner.cs
- ConfigXmlComment.cs
- SafeHandle.cs
- WebSysDescriptionAttribute.cs
- MappingItemCollection.cs
- Subtree.cs
- FacetValues.cs
- AutomationEvent.cs
- PathBox.cs
- OdbcDataAdapter.cs
- ValidationErrorCollection.cs
- ViewManager.cs
- SubclassTypeValidator.cs
- XamlTreeBuilderBamlRecordWriter.cs
- WorkflowInstanceRecord.cs
- BitmapSizeOptions.cs
- UnmanagedBitmapWrapper.cs
- FlatButtonAppearance.cs
- TextFormatter.cs
- DurationConverter.cs
- ToolStripDropDownClosingEventArgs.cs
- VirtualPathUtility.cs
- PieceDirectory.cs
- StringAttributeCollection.cs
- DESCryptoServiceProvider.cs
- WebPartDeleteVerb.cs
- CodeAttributeDeclaration.cs
- WebExceptionStatus.cs
- ComboBoxRenderer.cs
- TemplateControlParser.cs
- ProfileManager.cs
- FlowDocumentPaginator.cs
- RankException.cs
- VideoDrawing.cs
- SqlRemoveConstantOrderBy.cs
- WindowsFormsSectionHandler.cs
- _UriTypeConverter.cs
- EntityConnectionStringBuilder.cs
- CfgParser.cs
- NamespaceQuery.cs
- EventLevel.cs
- TableAdapterManagerHelper.cs
- EmbeddedMailObjectsCollection.cs
- TakeQueryOptionExpression.cs
- EncoderParameter.cs
- ComboBox.cs
- CodePageUtils.cs
- DataGridViewAutoSizeColumnModeEventArgs.cs
- DragDeltaEventArgs.cs
- TypeListConverter.cs
- ReliableChannelFactory.cs
- ProcessRequestAsyncResult.cs
- ItemCollection.cs
- StructureChangedEventArgs.cs
- DataGridToolTip.cs
- WinInetCache.cs
- TargetPerspective.cs
- HtmlControlAdapter.cs
- HttpHandlerActionCollection.cs