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
- ModuleBuilderData.cs
- ErrorEventArgs.cs
- Permission.cs
- StringDictionary.cs
- ClientRolePrincipal.cs
- SingleTagSectionHandler.cs
- securestring.cs
- InstanceDataCollection.cs
- _AcceptOverlappedAsyncResult.cs
- CellLabel.cs
- DropAnimation.xaml.cs
- Vector.cs
- InitializationEventAttribute.cs
- ZipPackagePart.cs
- ImageCodecInfoPrivate.cs
- ContractSearchPattern.cs
- Publisher.cs
- Highlights.cs
- Filter.cs
- CapabilitiesState.cs
- List.cs
- Variant.cs
- _BasicClient.cs
- XmlTextWriter.cs
- ContentOperations.cs
- ConstantExpression.cs
- XmlHierarchicalDataSourceView.cs
- _UncName.cs
- Rules.cs
- SqlConnectionStringBuilder.cs
- InfiniteTimeSpanConverter.cs
- NamedPermissionSet.cs
- TreeView.cs
- NamespaceMapping.cs
- SqlDataSourceView.cs
- HMACRIPEMD160.cs
- CodeDOMUtility.cs
- EventLogPermissionEntryCollection.cs
- Nodes.cs
- CompositeActivityTypeDescriptor.cs
- TypeValidationEventArgs.cs
- FileController.cs
- JulianCalendar.cs
- CommonEndpointBehaviorElement.cs
- ObjectDataSource.cs
- CharKeyFrameCollection.cs
- CollectionChangeEventArgs.cs
- LayoutEngine.cs
- TreeView.cs
- _PooledStream.cs
- TreeViewImageKeyConverter.cs
- MetadataItemEmitter.cs
- AnimatedTypeHelpers.cs
- Identifier.cs
- NTAccount.cs
- StorageAssociationTypeMapping.cs
- ProcessThread.cs
- xsdvalidator.cs
- CalendarDesigner.cs
- WinFormsComponentEditor.cs
- TextServicesDisplayAttribute.cs
- BamlRecordHelper.cs
- CroppedBitmap.cs
- EntityConnection.cs
- ExpandSegment.cs
- SectionVisual.cs
- Popup.cs
- ConsoleCancelEventArgs.cs
- ClientTarget.cs
- ExtensionQuery.cs
- RectKeyFrameCollection.cs
- HttpHandlersSection.cs
- BinaryUtilClasses.cs
- ObjectStorage.cs
- Stylus.cs
- XPathSelfQuery.cs
- returneventsaver.cs
- MutableAssemblyCacheEntry.cs
- ProfileModule.cs
- RtType.cs
- GetCertificateRequest.cs
- XPathChildIterator.cs
- AssemblyHash.cs
- StrokeFIndices.cs
- StylusShape.cs
- UTF32Encoding.cs
- DataGridColumnCollection.cs
- DataServiceSaveChangesEventArgs.cs
- DataControlFieldCollection.cs
- DrawingBrush.cs
- MarkupCompiler.cs
- ExpressionNormalizer.cs
- ThaiBuddhistCalendar.cs
- MailHeaderInfo.cs
- CharacterBuffer.cs
- DataReceivedEventArgs.cs
- NetNamedPipeSecurity.cs
- ClientType.cs
- BoolExpr.cs
- ImportCatalogPart.cs