Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / xsp / System / Web / Configuration / TrustLevelCollection.cs / 1 / 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
- DBConnection.cs
- StorageRoot.cs
- QilFunction.cs
- SHA256.cs
- TrustSection.cs
- PeerNameRecordCollection.cs
- UnwrappedTypesXmlSerializerManager.cs
- CodeTypeParameter.cs
- HeaderUtility.cs
- ConfigErrorGlyph.cs
- DbDataSourceEnumerator.cs
- StrokeRenderer.cs
- ItemCollection.cs
- SecurityKeyUsage.cs
- Renderer.cs
- LinearGradientBrush.cs
- XmlWrappingReader.cs
- RecognizerBase.cs
- HyperLink.cs
- RunWorkerCompletedEventArgs.cs
- DataGrid.cs
- ObjectStateManager.cs
- PrintPreviewDialog.cs
- _HeaderInfoTable.cs
- ConfigurationSectionGroup.cs
- PropertyOverridesDialog.cs
- AccessDataSource.cs
- HostedHttpTransportManager.cs
- DataRelation.cs
- SafeBitVector32.cs
- XmlRawWriter.cs
- Metafile.cs
- DataGridViewRowsAddedEventArgs.cs
- ListBoxItemAutomationPeer.cs
- WebPartConnectionsEventArgs.cs
- OleTxTransactionInfo.cs
- StringCollectionEditor.cs
- CodeTypeParameter.cs
- DataSourceCollectionBase.cs
- Thickness.cs
- DiscardableAttribute.cs
- RtfToXamlLexer.cs
- ReliableOutputSessionChannel.cs
- RoleGroupCollection.cs
- ReadOnlyAttribute.cs
- ProviderConnectionPointCollection.cs
- EventHandlersStore.cs
- DataBoundControl.cs
- InternalCache.cs
- ExceptionUtil.cs
- Int16AnimationBase.cs
- MenuAdapter.cs
- KnownIds.cs
- unitconverter.cs
- DependencyObjectPropertyDescriptor.cs
- ManifestSignatureInformation.cs
- PersonalizableAttribute.cs
- TypeConverterHelper.cs
- QuaternionRotation3D.cs
- COM2Properties.cs
- XmlNamedNodeMap.cs
- OdbcConnection.cs
- FieldToken.cs
- TableColumn.cs
- HttpProfileBase.cs
- DataGridCellEditEndingEventArgs.cs
- LogStore.cs
- DecoderNLS.cs
- RowBinding.cs
- StorageMappingItemCollection.cs
- Columns.cs
- DbDataSourceEnumerator.cs
- SerialPinChanges.cs
- OdbcStatementHandle.cs
- _LocalDataStore.cs
- EastAsianLunisolarCalendar.cs
- Rectangle.cs
- CannotUnloadAppDomainException.cs
- Context.cs
- ManagedFilter.cs
- MdImport.cs
- ModuleConfigurationInfo.cs
- BamlStream.cs
- NotificationContext.cs
- IxmlLineInfo.cs
- PreviewPrintController.cs
- DataPagerCommandEventArgs.cs
- PropertyGridCommands.cs
- DefaultPropertyAttribute.cs
- FlowNode.cs
- TypeForwardedToAttribute.cs
- IMembershipProvider.cs
- IssuanceLicense.cs
- SafeHandle.cs
- PermissionSetTriple.cs
- TabPage.cs
- InkSerializer.cs
- XmlCompatibilityReader.cs
- BezierSegment.cs
- IsolatedStorage.cs