Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / 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); } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Canvas.cs
- LongMinMaxAggregationOperator.cs
- DataGridViewCellLinkedList.cs
- SqlCacheDependencyDatabaseCollection.cs
- QilStrConcatenator.cs
- MouseButtonEventArgs.cs
- BuildManager.cs
- XmlTextReader.cs
- ToolBarButton.cs
- BevelBitmapEffect.cs
- ValueExpressions.cs
- DataControlFieldCell.cs
- TextServicesContext.cs
- XmlResolver.cs
- CodeParameterDeclarationExpression.cs
- BlockCollection.cs
- ComboBoxRenderer.cs
- MsmqHostedTransportConfiguration.cs
- UnsafeNativeMethods.cs
- MiniMapControl.xaml.cs
- EntityContainerEmitter.cs
- AlphaSortedEnumConverter.cs
- VariantWrapper.cs
- ClientBuildManager.cs
- PhysicalOps.cs
- SHA512.cs
- TreeBuilderXamlTranslator.cs
- BulletedList.cs
- CSharpCodeProvider.cs
- dsa.cs
- XmlTypeAttribute.cs
- RegistryHandle.cs
- Itemizer.cs
- WriteableBitmap.cs
- OleDbReferenceCollection.cs
- SystemColorTracker.cs
- EastAsianLunisolarCalendar.cs
- DirectoryGroupQuery.cs
- XmlSchemaNotation.cs
- RankException.cs
- SafeNativeMethods.cs
- GeneratedView.cs
- DataViewSettingCollection.cs
- StatusInfoItem.cs
- XMLSyntaxException.cs
- EnumMember.cs
- SettingsPropertyCollection.cs
- StackBuilderSink.cs
- ConstructorNeedsTagAttribute.cs
- WebPartEditorApplyVerb.cs
- InvalidOleVariantTypeException.cs
- EncryptedPackage.cs
- CompareInfo.cs
- DbExpressionVisitor.cs
- DecoderBestFitFallback.cs
- TreeNode.cs
- LinqDataSourceContextEventArgs.cs
- assertwrapper.cs
- CodeDirectiveCollection.cs
- EndpointDiscoveryMetadataCD1.cs
- ForeignKeyConstraint.cs
- HtmlButton.cs
- PowerStatus.cs
- DataProtection.cs
- Matrix3D.cs
- DataGridViewControlCollection.cs
- UIElement3D.cs
- TaiwanLunisolarCalendar.cs
- BitmapCache.cs
- PageCatalogPart.cs
- StatusBar.cs
- CornerRadius.cs
- XmlSchemaNotation.cs
- BamlTreeMap.cs
- ObjectStateEntryDbDataRecord.cs
- RequestFactory.cs
- TdsParser.cs
- TreeView.cs
- DecoderFallbackWithFailureFlag.cs
- DescendantOverDescendantQuery.cs
- LinkLabel.cs
- ProfessionalColors.cs
- BitmapCodecInfoInternal.cs
- X500Name.cs
- FormViewModeEventArgs.cs
- TextProviderWrapper.cs
- RegisteredExpandoAttribute.cs
- OperatingSystem.cs
- DiscoveryServiceExtension.cs
- PageRequestManager.cs
- LoginUtil.cs
- BaseCodeDomTreeGenerator.cs
- DataServiceCollectionOfT.cs
- AtomEntry.cs
- XPathBuilder.cs
- ByteKeyFrameCollection.cs
- DoubleCollection.cs
- PeerNameRecordCollection.cs
- MailMessageEventArgs.cs
- CommandManager.cs