Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XPathChildIterator.cs
- WebRequestModuleElement.cs
- WebEventCodes.cs
- CreationContext.cs
- ImportFileRequest.cs
- XmlSchemaSimpleContentRestriction.cs
- basecomparevalidator.cs
- TypeLoadException.cs
- SecuritySessionSecurityTokenAuthenticator.cs
- Attributes.cs
- HandlerFactoryCache.cs
- IteratorFilter.cs
- CollectionDataContractAttribute.cs
- Label.cs
- AssociationSetMetadata.cs
- DataServiceRequestOfT.cs
- CalculatedColumn.cs
- FunctionMappingTranslator.cs
- TdsEnums.cs
- RadioButtonStandardAdapter.cs
- UmAlQuraCalendar.cs
- EncryptedData.cs
- ColumnTypeConverter.cs
- DictionaryBase.cs
- ValidationHelper.cs
- CommandEventArgs.cs
- TypeValidationEventArgs.cs
- RoutedEventArgs.cs
- GeneratedView.cs
- ElementHost.cs
- dataprotectionpermission.cs
- TimeSpan.cs
- OrCondition.cs
- DragEvent.cs
- SafeBuffer.cs
- StorageMappingItemLoader.cs
- ManagementBaseObject.cs
- MULTI_QI.cs
- Delegate.cs
- XmlSerializationGeneratedCode.cs
- XmlAttributeAttribute.cs
- TokenDescriptor.cs
- LookupNode.cs
- AnonymousIdentificationSection.cs
- RuleSetBrowserDialog.cs
- ValidatorCollection.cs
- DataControlImageButton.cs
- OleStrCAMarshaler.cs
- CodeCompiler.cs
- ExpandedWrapper.cs
- DataListItemCollection.cs
- TextEndOfSegment.cs
- SingleResultAttribute.cs
- ComplexBindingPropertiesAttribute.cs
- TypographyProperties.cs
- TimeSpanSecondsOrInfiniteConverter.cs
- LinqDataSourceSelectEventArgs.cs
- FrameworkEventSource.cs
- GenericEnumerator.cs
- ContainerAction.cs
- X509CertificateValidator.cs
- MenuStrip.cs
- FusionWrap.cs
- InternalRelationshipCollection.cs
- Soap12ServerProtocol.cs
- MissingSatelliteAssemblyException.cs
- ListViewItemEventArgs.cs
- TagMapCollection.cs
- RequestContext.cs
- GrammarBuilderWildcard.cs
- ToolStripActionList.cs
- RecognizeCompletedEventArgs.cs
- GPStream.cs
- DataBindEngine.cs
- log.cs
- Shape.cs
- Region.cs
- HorizontalAlignConverter.cs
- FormsAuthenticationTicket.cs
- EventMap.cs
- SingleObjectCollection.cs
- ConditionCollection.cs
- EventLogEntry.cs
- FormViewInsertEventArgs.cs
- SecurityDescriptor.cs
- BaseProcessProtocolHandler.cs
- LayoutSettings.cs
- CommandDevice.cs
- TrackingParameters.cs
- RectangleGeometry.cs
- StretchValidation.cs
- TraceSection.cs
- LocalizationComments.cs
- ConfigurationException.cs
- XmlWriter.cs
- MethodBody.cs
- SiteMapProvider.cs
- ListView.cs
- KeyedHashAlgorithm.cs
- TogglePattern.cs