Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / ndp / fx / src / xsp / System / Web / Configuration / TrustLevelCollection.cs / 2 / TrustLevelCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Configuration { using System; using System.Xml; using System.Configuration; using System.Collections.Specialized; using System.Collections; using System.IO; using System.Text; using System.ComponentModel; using System.Security.Permissions; [ConfigurationCollection(typeof(TrustLevel), AddItemName = "trustLevel", CollectionType = ConfigurationElementCollectionType.BasicMap)] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class TrustLevelCollection : ConfigurationElementCollection { private static ConfigurationPropertyCollection _properties; static TrustLevelCollection() { _properties = new ConfigurationPropertyCollection(); } public TrustLevelCollection() { } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } // public properties public TrustLevel this[int index] { get { return (TrustLevel)BaseGet(index); } set { if (BaseGet(index) != null) { BaseRemoveAt(index); } BaseAdd(index, value); } } public new TrustLevel this[string key] { get { return (TrustLevel)BaseGet(key); } } // Protected Overrides protected override ConfigurationElement CreateNewElement() { return new TrustLevel(); } protected override Object GetElementKey(ConfigurationElement element) { return ((TrustLevel)element).Name; } protected override string ElementName { get { return "trustLevel"; } } protected override bool ThrowOnDuplicate { get { return true; } } public override ConfigurationElementCollectionType CollectionType { get { return ConfigurationElementCollectionType.BasicMap; } } protected override bool IsElementName(string elementname) { bool IsElement = false; switch (elementname) { case "trustLevel": IsElement = true; break; } return IsElement; } // public methods public void Add(TrustLevel trustLevel) { BaseAdd(trustLevel); } public void Clear() { BaseClear(); } public TrustLevel Get(int index) { return (TrustLevel)BaseGet(index); } public void RemoveAt(int index) { BaseRemoveAt(index); } public void Remove(TrustLevel trustLevel) { BaseRemove(GetElementKey(trustLevel)); } public void Set(int index, TrustLevel trustLevel) { BaseAdd(index, trustLevel); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Configuration { using System; using System.Xml; using System.Configuration; using System.Collections.Specialized; using System.Collections; using System.IO; using System.Text; using System.ComponentModel; using System.Security.Permissions; [ConfigurationCollection(typeof(TrustLevel), AddItemName = "trustLevel", CollectionType = ConfigurationElementCollectionType.BasicMap)] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class TrustLevelCollection : ConfigurationElementCollection { private static ConfigurationPropertyCollection _properties; static TrustLevelCollection() { _properties = new ConfigurationPropertyCollection(); } public TrustLevelCollection() { } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } // public properties public TrustLevel this[int index] { get { return (TrustLevel)BaseGet(index); } set { if (BaseGet(index) != null) { BaseRemoveAt(index); } BaseAdd(index, value); } } public new TrustLevel this[string key] { get { return (TrustLevel)BaseGet(key); } } // Protected Overrides protected override ConfigurationElement CreateNewElement() { return new TrustLevel(); } protected override Object GetElementKey(ConfigurationElement element) { return ((TrustLevel)element).Name; } protected override string ElementName { get { return "trustLevel"; } } protected override bool ThrowOnDuplicate { get { return true; } } public override ConfigurationElementCollectionType CollectionType { get { return ConfigurationElementCollectionType.BasicMap; } } protected override bool IsElementName(string elementname) { bool IsElement = false; switch (elementname) { case "trustLevel": IsElement = true; break; } return IsElement; } // public methods public void Add(TrustLevel trustLevel) { BaseAdd(trustLevel); } public void Clear() { BaseClear(); } public TrustLevel Get(int index) { return (TrustLevel)BaseGet(index); } public void RemoveAt(int index) { BaseRemoveAt(index); } public void Remove(TrustLevel trustLevel) { BaseRemove(GetElementKey(trustLevel)); } public void Set(int index, TrustLevel trustLevel) { BaseAdd(index, trustLevel); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- PropertyGridEditorPart.cs
- PageThemeParser.cs
- ADMembershipUser.cs
- DatagridviewDisplayedBandsData.cs
- EncodedStreamFactory.cs
- IssuerInformation.cs
- xmlglyphRunInfo.cs
- PasswordTextNavigator.cs
- ListSourceHelper.cs
- TableItemPattern.cs
- KnownBoxes.cs
- wgx_exports.cs
- ReadOnlyDataSourceView.cs
- TreeView.cs
- NavigationEventArgs.cs
- x509store.cs
- OpenFileDialog.cs
- WmlCalendarAdapter.cs
- WebEventCodes.cs
- cryptoapiTransform.cs
- Item.cs
- WindowManager.cs
- Timer.cs
- UserMapPath.cs
- WindowProviderWrapper.cs
- DataBindEngine.cs
- GreenMethods.cs
- StorageEntitySetMapping.cs
- RedistVersionInfo.cs
- SplashScreenNativeMethods.cs
- MenuItemBinding.cs
- AppSettingsExpressionEditor.cs
- Attributes.cs
- AutomationPatternInfo.cs
- HandlerBase.cs
- KeyNameIdentifierClause.cs
- PeerToPeerException.cs
- ObjectPersistData.cs
- OdbcReferenceCollection.cs
- xmlfixedPageInfo.cs
- RawAppCommandInputReport.cs
- GlyphTypeface.cs
- UnsafeMethods.cs
- InputDevice.cs
- ScrollProperties.cs
- NavigationExpr.cs
- Utils.cs
- FileSecurity.cs
- SwitchLevelAttribute.cs
- XmlSchemaObjectTable.cs
- CollectionBuilder.cs
- ModelChangedEventArgsImpl.cs
- GridItem.cs
- ValidationSummary.cs
- panel.cs
- TreeViewDesigner.cs
- QuadraticBezierSegment.cs
- X509CertificateClaimSet.cs
- CancelEventArgs.cs
- Identifier.cs
- Terminate.cs
- LoginName.cs
- ImageListDesigner.cs
- XmlValidatingReader.cs
- RC2CryptoServiceProvider.cs
- IsolatedStorageSecurityState.cs
- HMACRIPEMD160.cs
- ScrollProviderWrapper.cs
- DataReceivedEventArgs.cs
- FocusWithinProperty.cs
- CompositeCollection.cs
- As.cs
- TableDetailsRow.cs
- DataGridViewRowConverter.cs
- ResourcePool.cs
- DataGridViewColumnHeaderCell.cs
- PopOutPanel.cs
- XmlMemberMapping.cs
- DocumentXmlWriter.cs
- NamespaceCollection.cs
- WindowsListViewSubItem.cs
- ChtmlImageAdapter.cs
- SqlReorderer.cs
- LockCookie.cs
- TdsValueSetter.cs
- FilterElement.cs
- XmlIlTypeHelper.cs
- FileReservationCollection.cs
- ToggleButton.cs
- DeferredElementTreeState.cs
- PageCache.cs
- HttpPostClientProtocol.cs
- MemoryMappedViewStream.cs
- ProtocolsConfigurationHandler.cs
- XmlSchemaFacet.cs
- BufferedStream2.cs
- LogSwitch.cs
- ProcessModelInfo.cs
- CharacterShapingProperties.cs
- TickBar.cs