Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Services / Web / System / Web / Services / Configuration / SoapExtensionTypeElementCollection.cs / 1305376 / SoapExtensionTypeElementCollection.cs
//------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace System.Web.Services.Configuration { using System; using System.Collections; using System.Configuration; using System.Diagnostics; using System.Globalization; using System.Security.Permissions; [ConfigurationCollection(typeof(SoapExtensionTypeElement))] public sealed class SoapExtensionTypeElementCollection : ConfigurationElementCollection { public void Add(SoapExtensionTypeElement element) { if (element == null) { throw new ArgumentNullException("element"); } BaseAdd(element); } public void Clear() { BaseClear(); } public bool ContainsKey(object key) { if (key == null) { throw new ArgumentNullException("key"); } return this.BaseGet(key) != null; } protected override ConfigurationElement CreateNewElement() { return new SoapExtensionTypeElement(); } public void CopyTo(SoapExtensionTypeElement[] array, int index) { if (array == null) { throw new ArgumentNullException("array"); } ((ICollection)this).CopyTo(array, index); } protected override Object GetElementKey(ConfigurationElement element) { if (element == null) { throw new ArgumentNullException("element"); } // we allow multiple soap extensions with the same type to run. return element; } public int IndexOf(SoapExtensionTypeElement element) { if (element == null) { throw new ArgumentNullException("element"); } return BaseIndexOf(element); } public void Remove(SoapExtensionTypeElement element) { if (element == null) { throw new ArgumentNullException("element"); } BaseRemove(GetElementKey(element)); } public void RemoveAt(object key) { if (key == null) { throw new ArgumentNullException("key"); } BaseRemove(key); } public void RemoveAt(int index) { BaseRemoveAt(index); } public SoapExtensionTypeElement this[object key] { get { if (key == null) { throw new ArgumentNullException("key"); } SoapExtensionTypeElement retval = (SoapExtensionTypeElement)this.BaseGet(key); if (retval == null) { throw new System.Collections.Generic.KeyNotFoundException( string.Format(CultureInfo.InvariantCulture, Res.GetString(Res.ConfigKeyNotFoundInElementCollection), key.ToString())); } return retval; } set { if (value == null) { throw new ArgumentNullException("value"); } if (key == null) { throw new ArgumentNullException("key"); } // NOTE [ivelin : integration fix] The change bellow have the issue that it wont use the collection comparer // if one is specified. We ( System.Configuration ) usually avoid having set_item[ key ] when the element contains // the key and instead provide an Add( element ) method only. if ( this.GetElementKey(value).Equals(key)) { if (BaseGet(key) != null) { BaseRemove(key); } Add(value); } else { throw new ArgumentException(string.Format(CultureInfo.InvariantCulture, Res.GetString(Res.ConfigKeysDoNotMatch), this.GetElementKey(value).ToString(), key.ToString())); } } } public SoapExtensionTypeElement this[int index] { get { return (SoapExtensionTypeElement)BaseGet(index); } set { if (BaseGet(index) != null) { BaseRemoveAt(index); } BaseAdd(index,value); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace System.Web.Services.Configuration { using System; using System.Collections; using System.Configuration; using System.Diagnostics; using System.Globalization; using System.Security.Permissions; [ConfigurationCollection(typeof(SoapExtensionTypeElement))] public sealed class SoapExtensionTypeElementCollection : ConfigurationElementCollection { public void Add(SoapExtensionTypeElement element) { if (element == null) { throw new ArgumentNullException("element"); } BaseAdd(element); } public void Clear() { BaseClear(); } public bool ContainsKey(object key) { if (key == null) { throw new ArgumentNullException("key"); } return this.BaseGet(key) != null; } protected override ConfigurationElement CreateNewElement() { return new SoapExtensionTypeElement(); } public void CopyTo(SoapExtensionTypeElement[] array, int index) { if (array == null) { throw new ArgumentNullException("array"); } ((ICollection)this).CopyTo(array, index); } protected override Object GetElementKey(ConfigurationElement element) { if (element == null) { throw new ArgumentNullException("element"); } // we allow multiple soap extensions with the same type to run. return element; } public int IndexOf(SoapExtensionTypeElement element) { if (element == null) { throw new ArgumentNullException("element"); } return BaseIndexOf(element); } public void Remove(SoapExtensionTypeElement element) { if (element == null) { throw new ArgumentNullException("element"); } BaseRemove(GetElementKey(element)); } public void RemoveAt(object key) { if (key == null) { throw new ArgumentNullException("key"); } BaseRemove(key); } public void RemoveAt(int index) { BaseRemoveAt(index); } public SoapExtensionTypeElement this[object key] { get { if (key == null) { throw new ArgumentNullException("key"); } SoapExtensionTypeElement retval = (SoapExtensionTypeElement)this.BaseGet(key); if (retval == null) { throw new System.Collections.Generic.KeyNotFoundException( string.Format(CultureInfo.InvariantCulture, Res.GetString(Res.ConfigKeyNotFoundInElementCollection), key.ToString())); } return retval; } set { if (value == null) { throw new ArgumentNullException("value"); } if (key == null) { throw new ArgumentNullException("key"); } // NOTE [ivelin : integration fix] The change bellow have the issue that it wont use the collection comparer // if one is specified. We ( System.Configuration ) usually avoid having set_item[ key ] when the element contains // the key and instead provide an Add( element ) method only. if ( this.GetElementKey(value).Equals(key)) { if (BaseGet(key) != null) { BaseRemove(key); } Add(value); } else { throw new ArgumentException(string.Format(CultureInfo.InvariantCulture, Res.GetString(Res.ConfigKeysDoNotMatch), this.GetElementKey(value).ToString(), key.ToString())); } } } public SoapExtensionTypeElement this[int index] { get { return (SoapExtensionTypeElement)BaseGet(index); } set { if (BaseGet(index) != null) { BaseRemoveAt(index); } BaseAdd(index,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
- ListMarkerSourceInfo.cs
- ChannelToken.cs
- CachingHintValidation.cs
- WmlSelectionListAdapter.cs
- TextContainer.cs
- _HelperAsyncResults.cs
- ResourceManager.cs
- Ray3DHitTestResult.cs
- _IPv6Address.cs
- TextBox.cs
- mda.cs
- TemplateManager.cs
- MdImport.cs
- AppDomainShutdownMonitor.cs
- LocatorManager.cs
- Page.cs
- SqlSelectClauseBuilder.cs
- SqlCommandSet.cs
- ProtectedConfigurationProviderCollection.cs
- DocumentCollection.cs
- KernelTypeValidation.cs
- OdbcInfoMessageEvent.cs
- HttpWebRequest.cs
- DataFormats.cs
- MediaTimeline.cs
- PaperSize.cs
- LaxModeSecurityHeaderElementInferenceEngine.cs
- MsmqIntegrationBindingElement.cs
- ColorTranslator.cs
- XamlWriter.cs
- GridViewColumnHeaderAutomationPeer.cs
- AuthenticationConfig.cs
- CommonDialog.cs
- FieldAccessException.cs
- BatchStream.cs
- BitmapEffectOutputConnector.cs
- DBConnection.cs
- XmlCollation.cs
- EntityDataSourceQueryBuilder.cs
- RadioButtonAutomationPeer.cs
- AuthenticationModuleElement.cs
- ConfigXmlElement.cs
- XsltLoader.cs
- PropertiesTab.cs
- CleanUpVirtualizedItemEventArgs.cs
- HttpWebRequestElement.cs
- SqlCharStream.cs
- BitStack.cs
- CheckPair.cs
- FileCodeGroup.cs
- DataTrigger.cs
- RawStylusInputCustomData.cs
- DataGridViewAutoSizeModeEventArgs.cs
- WebServiceResponseDesigner.cs
- NotifyIcon.cs
- LambdaValue.cs
- Rect3D.cs
- RawStylusInputCustomDataList.cs
- CommonXSendMessage.cs
- TextBoxAutomationPeer.cs
- OdbcTransaction.cs
- LayoutTableCell.cs
- EditableRegion.cs
- DataGridSortCommandEventArgs.cs
- PreservationFileWriter.cs
- SettingsAttributes.cs
- TransactionChannelListener.cs
- EdmItemError.cs
- SqlBuilder.cs
- FixedDocument.cs
- RegexWriter.cs
- SelectorItemAutomationPeer.cs
- WebPartEditorCancelVerb.cs
- ProjectionPlan.cs
- Math.cs
- ConfigXmlText.cs
- DataServiceRequestArgs.cs
- NumberAction.cs
- DesignRelation.cs
- SelectingProviderEventArgs.cs
- TrackingLocationCollection.cs
- SchemaCompiler.cs
- IdentityModelDictionary.cs
- WebPartDisplayMode.cs
- Content.cs
- TransactionChannelFactory.cs
- embossbitmapeffect.cs
- DialogResultConverter.cs
- securitycriticaldata.cs
- ZipIOLocalFileBlock.cs
- TextElementEnumerator.cs
- _Connection.cs
- TextTreeExtractElementUndoUnit.cs
- UnsafeNativeMethods.cs
- SqlDataReader.cs
- PrivateUnsafeNativeCompoundFileMethods.cs
- MsmqBindingMonitor.cs
- SqlServices.cs
- XmlCollation.cs
- HatchBrush.cs