Code:
/ DotNET / DotNET / 8.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
- PropertyFilterAttribute.cs
- WindowsIdentity.cs
- Identity.cs
- ExpressionReplacer.cs
- GenericsNotImplementedException.cs
- DispatcherEventArgs.cs
- DataSourceView.cs
- SemanticTag.cs
- BoolExpressionVisitors.cs
- RequestCachingSection.cs
- PopupRoot.cs
- WorkflowPrinting.cs
- HtmlLink.cs
- ObjectStateEntryOriginalDbUpdatableDataRecord.cs
- ToolStripSplitStackLayout.cs
- WindowsSolidBrush.cs
- _ScatterGatherBuffers.cs
- ExpandCollapsePattern.cs
- HTMLTagNameToTypeMapper.cs
- CommandPlan.cs
- TransformProviderWrapper.cs
- WebPartZoneBase.cs
- TraceSource.cs
- LinqDataSourceUpdateEventArgs.cs
- shaperfactoryquerycacheentry.cs
- Binding.cs
- NeutralResourcesLanguageAttribute.cs
- Merger.cs
- shaperfactory.cs
- ExtendedProperty.cs
- DefaultTextStore.cs
- DesignerHierarchicalDataSourceView.cs
- SHA256CryptoServiceProvider.cs
- SByteStorage.cs
- Preprocessor.cs
- StorageEntityContainerMapping.cs
- AttributeQuery.cs
- MenuItemBindingCollection.cs
- PrintEvent.cs
- DataSourceDesigner.cs
- SQLRoleProvider.cs
- XmlCharCheckingWriter.cs
- XdrBuilder.cs
- CrossSiteScriptingValidation.cs
- MobileComponentEditorPage.cs
- SymbolMethod.cs
- Array.cs
- LinqMaximalSubtreeNominator.cs
- ItemsControl.cs
- SynchronizedKeyedCollection.cs
- ZipFileInfo.cs
- CookieHandler.cs
- AccessDataSource.cs
- ToolboxComponentsCreatingEventArgs.cs
- PointHitTestResult.cs
- SafeWaitHandle.cs
- SessionStateContainer.cs
- WebFaultClientMessageInspector.cs
- XmlImplementation.cs
- DataRecordInfo.cs
- RequestResizeEvent.cs
- _PooledStream.cs
- SiteMapNodeItem.cs
- Int64AnimationBase.cs
- NonSerializedAttribute.cs
- cookiecontainer.cs
- IisTraceWebEventProvider.cs
- WebPartUserCapability.cs
- AspNetHostingPermission.cs
- ViewCellRelation.cs
- Constants.cs
- LineVisual.cs
- WindowsFormsDesignerOptionService.cs
- GreenMethods.cs
- IsolatedStorageFilePermission.cs
- NamedPipeAppDomainProtocolHandler.cs
- DataException.cs
- Registry.cs
- BlurEffect.cs
- NativeMethods.cs
- TdsParserStateObject.cs
- Literal.cs
- PasswordTextContainer.cs
- BitmapEffectGeneralTransform.cs
- InfoCardSymmetricAlgorithm.cs
- TypeGeneratedEventArgs.cs
- WorkflowDesignerColors.cs
- MsmqNonTransactedPoisonHandler.cs
- UInt32Converter.cs
- SpeechSeg.cs
- Schedule.cs
- DesignerCategoryAttribute.cs
- TemplateControlBuildProvider.cs
- PageTrueTypeFont.cs
- XmlReflectionMember.cs
- ActionMessageFilter.cs
- XmlCharType.cs
- DateTimeEditor.cs
- WebPartCatalogCloseVerb.cs
- CodeTypeDelegate.cs