Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / xsp / System / Web / Configuration / TrustLevelCollection.cs / 5 / 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. // //----------------------------------------------------------------------------- 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- MetadataWorkspace.cs
- KeyConverter.cs
- FormCollection.cs
- _SSPISessionCache.cs
- tooltip.cs
- BamlVersionHeader.cs
- TextSimpleMarkerProperties.cs
- DataGridTable.cs
- XamlClipboardData.cs
- LambdaCompiler.Generated.cs
- LocationChangedEventArgs.cs
- AxisAngleRotation3D.cs
- Visual3D.cs
- SerializationAttributes.cs
- LoginStatusDesigner.cs
- EdmSchemaError.cs
- Event.cs
- DesignerRegion.cs
- ExpressionWriter.cs
- CubicEase.cs
- DataGridViewColumnStateChangedEventArgs.cs
- DataServiceSaveChangesEventArgs.cs
- PowerStatus.cs
- MultipleViewProviderWrapper.cs
- ProtocolElementCollection.cs
- DifferencingCollection.cs
- RequestCachePolicy.cs
- DataGridColumnHeaderItemAutomationPeer.cs
- SizeFConverter.cs
- RtfControls.cs
- Domain.cs
- DataGridViewMethods.cs
- DataTableNewRowEvent.cs
- SoapSchemaImporter.cs
- MatrixStack.cs
- GlobalEventManager.cs
- InputLanguageEventArgs.cs
- SecurityContext.cs
- Unit.cs
- DataServiceQueryException.cs
- ComponentManagerBroker.cs
- DelayLoadType.cs
- exports.cs
- CultureNotFoundException.cs
- DebugViewWriter.cs
- PeerNameRegistration.cs
- EntityKeyElement.cs
- MsdtcClusterUtils.cs
- While.cs
- RenderDataDrawingContext.cs
- SecurityRuntime.cs
- DataTableMappingCollection.cs
- ReadOnlyCollectionBase.cs
- SQLDateTimeStorage.cs
- WizardForm.cs
- Conditional.cs
- SynchronizedDisposablePool.cs
- CorrelationTokenTypeConvertor.cs
- StackBuilderSink.cs
- ItemCollection.cs
- TextEmbeddedObject.cs
- XamlClipboardData.cs
- XmlCustomFormatter.cs
- MatchAttribute.cs
- BrowserDefinition.cs
- SerializableAttribute.cs
- StylusButtonEventArgs.cs
- SamlAuthorizationDecisionStatement.cs
- KeyTime.cs
- SqlMethods.cs
- XmlImplementation.cs
- SafeNativeMethods.cs
- _emptywebproxy.cs
- Size3D.cs
- TypeProvider.cs
- SqlSupersetValidator.cs
- FormViewRow.cs
- RequestNavigateEventArgs.cs
- TemplatePropertyEntry.cs
- IPEndPointCollection.cs
- SqlNamer.cs
- NativeMethodsOther.cs
- RowToParametersTransformer.cs
- DependencyPropertyChangedEventArgs.cs
- DeclarativeCatalogPartDesigner.cs
- HttpHandlerAction.cs
- ResourceAssociationType.cs
- OSFeature.cs
- MessageSecurityOverMsmq.cs
- ScrollableControl.cs
- RadioButton.cs
- RegexBoyerMoore.cs
- EntityObject.cs
- Page.cs
- XmlUtf8RawTextWriter.cs
- ChannelSinkStacks.cs
- DataSourceComponent.cs
- ContainerUtilities.cs
- SystemPens.cs
- ControlAdapter.cs