Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- ToolTip.cs
- AmbientProperties.cs
- LinearKeyFrames.cs
- DiagnosticTraceSource.cs
- SelectedDatesCollection.cs
- XmlNavigatorStack.cs
- ReferencedType.cs
- GregorianCalendarHelper.cs
- RegexFCD.cs
- UserPreferenceChangedEventArgs.cs
- DataGridColumn.cs
- ForceCopyBuildProvider.cs
- IndexedDataBuffer.cs
- DirectoryNotFoundException.cs
- Operand.cs
- SqlResolver.cs
- MemberInfoSerializationHolder.cs
- AttributeAction.cs
- ContourSegment.cs
- PackagePartCollection.cs
- SingletonInstanceContextProvider.cs
- KeySpline.cs
- SerializableAttribute.cs
- QuaternionAnimationUsingKeyFrames.cs
- DataAdapter.cs
- PolygonHotSpot.cs
- CompoundFileReference.cs
- AlphaSortedEnumConverter.cs
- ObjectQuery_EntitySqlExtensions.cs
- InstanceDataCollection.cs
- PlatformCulture.cs
- LineServicesCallbacks.cs
- AttributeConverter.cs
- CodeParameterDeclarationExpressionCollection.cs
- MDIControlStrip.cs
- XmlNodeReader.cs
- XmlLangPropertyAttribute.cs
- wgx_commands.cs
- SqlNodeTypeOperators.cs
- EntityConnectionStringBuilder.cs
- CodeTypeMember.cs
- ThreadSafeList.cs
- DbUpdateCommandTree.cs
- ProgressBar.cs
- DBBindings.cs
- ChangeBlockUndoRecord.cs
- ApplicationTrust.cs
- DeflateEmulationStream.cs
- QilXmlWriter.cs
- UpdatePanel.cs
- DrawingCollection.cs
- ClientSettingsSection.cs
- InternalsVisibleToAttribute.cs
- ColorMatrix.cs
- AuthenticatingEventArgs.cs
- BamlLocalizationDictionary.cs
- RegexCharClass.cs
- SrgsRule.cs
- ConfigXmlCDataSection.cs
- ScriptResourceHandler.cs
- XmlTypeMapping.cs
- FirstQueryOperator.cs
- XamlStream.cs
- CultureTableRecord.cs
- TrackingExtract.cs
- SafeLibraryHandle.cs
- SessionSwitchEventArgs.cs
- GregorianCalendar.cs
- DataServiceConfiguration.cs
- SqlDataSourceView.cs
- TagNameToTypeMapper.cs
- Attributes.cs
- StorageAssociationSetMapping.cs
- Debug.cs
- TagElement.cs
- Profiler.cs
- WrappedKeySecurityToken.cs
- DataColumnPropertyDescriptor.cs
- WebRequestModulesSection.cs
- KnownTypeDataContractResolver.cs
- __Filters.cs
- StrongNameIdentityPermission.cs
- CompilationLock.cs
- SecureStringHasher.cs
- SecureEnvironment.cs
- ThemeInfoAttribute.cs
- WebPartConnectionsConfigureVerb.cs
- DockEditor.cs
- Padding.cs
- ContextStack.cs
- RenderTargetBitmap.cs
- CodeRemoveEventStatement.cs
- GridViewCellAutomationPeer.cs
- XmlSubtreeReader.cs
- PropertyHelper.cs
- InsufficientMemoryException.cs
- AnimatedTypeHelpers.cs
- PerfCounters.cs
- CalendarDay.cs
- Token.cs