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
- RuleSetReference.cs
- ProgressBarBrushConverter.cs
- OutputCacheProfile.cs
- EventSinkHelperWriter.cs
- DelegatedStream.cs
- WebPartExportVerb.cs
- DataComponentGenerator.cs
- GACMembershipCondition.cs
- UncommonField.cs
- UseLicense.cs
- UnsafeNativeMethods.cs
- FrugalList.cs
- DefaultAssemblyResolver.cs
- SecurityPolicySection.cs
- XmlCharCheckingReader.cs
- Parallel.cs
- ComboBox.cs
- UInt32Converter.cs
- CopyNamespacesAction.cs
- ReflectionHelper.cs
- SiteMapNodeItem.cs
- HttpListenerRequest.cs
- SmtpNtlmAuthenticationModule.cs
- EntityDataSourceDesignerHelper.cs
- HttpBrowserCapabilitiesWrapper.cs
- SafeNativeMethods.cs
- CommandDesigner.cs
- WebPartMenu.cs
- WaitForChangedResult.cs
- XmlValueConverter.cs
- DataRelationCollection.cs
- HwndHostAutomationPeer.cs
- EntityContainerRelationshipSetEnd.cs
- XmlSchemaIdentityConstraint.cs
- ObjectParameterCollection.cs
- TabControlDesigner.cs
- TransformCollection.cs
- Cloud.cs
- AnnotationAuthorChangedEventArgs.cs
- BaseUriHelper.cs
- ISessionStateStore.cs
- Exceptions.cs
- MultipartIdentifier.cs
- ContentTextAutomationPeer.cs
- UnsafeNativeMethods.cs
- SpecialTypeDataContract.cs
- UniqueConstraint.cs
- WpfXamlMember.cs
- XmlSubtreeReader.cs
- CodeAttributeDeclarationCollection.cs
- SaveFileDialogDesigner.cs
- CompilationLock.cs
- SqlMetaData.cs
- CodeAssignStatement.cs
- SQLMembershipProvider.cs
- DBBindings.cs
- PlanCompiler.cs
- RelationshipWrapper.cs
- XmlSchemaSimpleContentExtension.cs
- SingleAnimationUsingKeyFrames.cs
- Duration.cs
- ListViewCommandEventArgs.cs
- ApplicationBuildProvider.cs
- MDIWindowDialog.cs
- StreamingContext.cs
- TemporaryBitmapFile.cs
- Scheduler.cs
- RawStylusSystemGestureInputReport.cs
- ServiceRouteHandler.cs
- OleDbRowUpdatedEvent.cs
- TokenBasedSet.cs
- HashHelpers.cs
- AppSettingsReader.cs
- PropertyDescriptorCollection.cs
- FamilyTypeface.cs
- UniqueID.cs
- DocumentEventArgs.cs
- WinEventHandler.cs
- MonitorWrapper.cs
- SymbolEqualComparer.cs
- PersistenceProviderElement.cs
- XmlSchemaObjectTable.cs
- SerializationHelper.cs
- Attachment.cs
- URLString.cs
- FieldDescriptor.cs
- OledbConnectionStringbuilder.cs
- StylesEditorDialog.cs
- TextDecorationCollection.cs
- ScrollViewerAutomationPeer.cs
- FormatPage.cs
- Control.cs
- ToolZoneDesigner.cs
- ReachSerializableProperties.cs
- XmlElement.cs
- SelectionGlyphBase.cs
- InheritanceAttribute.cs
- MemberPath.cs
- StagingAreaInputItem.cs
- TdsParser.cs