Code:
/ 4.0 / 4.0 / 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. //------------------------------------------------------------------------------ //// 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
- RenameRuleObjectDialog.cs
- SchemaMapping.cs
- SelfIssuedAuthRSAPKCS1SignatureFormatter.cs
- IdentityReference.cs
- MsmqIntegrationInputChannel.cs
- Expression.cs
- GatewayIPAddressInformationCollection.cs
- ReplacementText.cs
- BrowserDefinitionCollection.cs
- BounceEase.cs
- TypeToken.cs
- SQLDecimalStorage.cs
- SqlResolver.cs
- Stack.cs
- FileEnumerator.cs
- FormViewDesigner.cs
- SynchronizationContext.cs
- XmlSchemaComplexContentExtension.cs
- Knowncolors.cs
- DataServiceProcessingPipeline.cs
- ObjectStateEntry.cs
- MediaElementAutomationPeer.cs
- UpdateDelegates.Generated.cs
- SkewTransform.cs
- StringExpressionSet.cs
- ErrorTableItemStyle.cs
- ContainerVisual.cs
- TouchDevice.cs
- MetadataExchangeClient.cs
- ImageButton.cs
- AssemblyAttributesGoHere.cs
- SelectionEditingBehavior.cs
- ListBoxItemAutomationPeer.cs
- EvidenceTypeDescriptor.cs
- SiteMapNodeItemEventArgs.cs
- PointHitTestResult.cs
- Model3DGroup.cs
- TypeReference.cs
- ArithmeticException.cs
- BinaryUtilClasses.cs
- ShutDownListener.cs
- Maps.cs
- HandlerBase.cs
- CodeBlockBuilder.cs
- DataTableNameHandler.cs
- RuntimeUtils.cs
- LayoutSettings.cs
- GridToolTip.cs
- TemplatedMailWebEventProvider.cs
- EntityDataSourceMemberPath.cs
- Point3DConverter.cs
- InstancePersistenceException.cs
- FileUtil.cs
- SplineKeyFrames.cs
- Bitmap.cs
- HandlerBase.cs
- WorkflowPersistenceService.cs
- VectorValueSerializer.cs
- DataGridViewColumnTypePicker.cs
- InvalidPrinterException.cs
- Timer.cs
- GACMembershipCondition.cs
- Query.cs
- MemoryMappedFileSecurity.cs
- Misc.cs
- ClrPerspective.cs
- ErrorTolerantObjectWriter.cs
- WebPartVerbsEventArgs.cs
- _SslState.cs
- Pen.cs
- FileEnumerator.cs
- FormsAuthenticationUserCollection.cs
- ToolboxComponentsCreatedEventArgs.cs
- GlobalizationAssembly.cs
- MachineSettingsSection.cs
- EventBookmark.cs
- HttpVersion.cs
- ClientFormsIdentity.cs
- SafeNativeMethods.cs
- ToolboxItem.cs
- BufferModeSettings.cs
- SqlProviderUtilities.cs
- WebPart.cs
- ButtonChrome.cs
- DataAdapter.cs
- SafeProcessHandle.cs
- HostedNamedPipeTransportManager.cs
- HtmlInputFile.cs
- MachineKeySection.cs
- PathSegment.cs
- XmlSerializerFactory.cs
- UseManagedPresentationBindingElementImporter.cs
- CompiledELinqQueryState.cs
- LineSegment.cs
- RegexRunner.cs
- IdentityModelDictionary.cs
- HelpKeywordAttribute.cs
- ResourceExpressionBuilder.cs
- FusionWrap.cs
- XsltConvert.cs