Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / Configuration / SecurityPolicySection.cs / 2 / SecurityPolicySection.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; /* This data is in a location in Machine.Config... How do I deal with that? For now I will leave the section in machine.config, The initialization of the trust levels are overwritable in this collection.*/ [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class SecurityPolicySection : ConfigurationSection { private static ConfigurationPropertyCollection _properties; private static readonly ConfigurationProperty _propTrustLevels = new ConfigurationProperty(null, typeof(TrustLevelCollection), null, ConfigurationPropertyOptions.IsDefaultCollection); static SecurityPolicySection() { // Property initialization _properties = new ConfigurationPropertyCollection(); _properties.Add(_propTrustLevels); } public SecurityPolicySection() { } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } [ConfigurationProperty("", IsDefaultCollection = true)] public TrustLevelCollection TrustLevels { get { return (TrustLevelCollection)base[_propTrustLevels]; } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- LogicalCallContext.cs
- storepermissionattribute.cs
- NetNamedPipeBindingElement.cs
- EntityTypeEmitter.cs
- SimpleTextLine.cs
- WebPartEditorOkVerb.cs
- DecimalAnimationUsingKeyFrames.cs
- MobileDeviceCapabilitiesSectionHandler.cs
- TypeDelegator.cs
- PropertyDescriptorGridEntry.cs
- DataDocumentXPathNavigator.cs
- MarshalByRefObject.cs
- CaretElement.cs
- WebPartHelpVerb.cs
- AttributeTableBuilder.cs
- RtfFormatStack.cs
- HttpException.cs
- WebPartZoneBase.cs
- ApplicationId.cs
- Lock.cs
- XmlNamespaceDeclarationsAttribute.cs
- SqlParameterizer.cs
- LeaseManager.cs
- ImageMapEventArgs.cs
- GridItemProviderWrapper.cs
- TextSelectionHelper.cs
- HostExecutionContextManager.cs
- AdornerPresentationContext.cs
- coordinatorfactory.cs
- TrustSection.cs
- ExtensibleClassFactory.cs
- TraceHandlerErrorFormatter.cs
- SafeRegistryHandle.cs
- TextDecoration.cs
- DataGridViewButtonCell.cs
- LogWriteRestartAreaAsyncResult.cs
- WindowsSlider.cs
- PasswordTextNavigator.cs
- AnnotationAdorner.cs
- DataGridViewRowHeightInfoPushedEventArgs.cs
- PixelFormats.cs
- SqlExpressionNullability.cs
- LinqToSqlWrapper.cs
- DefaultParameterValueAttribute.cs
- HandlerMappingMemo.cs
- DataGridViewSelectedCellCollection.cs
- OleDbCommand.cs
- StyleReferenceConverter.cs
- DynamicControl.cs
- ComponentEditorForm.cs
- UniqueEventHelper.cs
- DataGridViewRowCancelEventArgs.cs
- typedescriptorpermission.cs
- DrawTreeNodeEventArgs.cs
- ObjectItemAssemblyLoader.cs
- sitestring.cs
- FixedNode.cs
- HttpResponseHeader.cs
- EdmProviderManifest.cs
- URI.cs
- HandlerWithFactory.cs
- PassportPrincipal.cs
- BitmapSizeOptions.cs
- RowsCopiedEventArgs.cs
- FormViewRow.cs
- InstanceOwnerException.cs
- DateTimeUtil.cs
- WinInet.cs
- XmlReaderSettings.cs
- TemplateParser.cs
- MobileComponentEditorPage.cs
- Converter.cs
- ConstraintConverter.cs
- ToolStripContentPanel.cs
- NonSerializedAttribute.cs
- ClassHandlersStore.cs
- UIElement3D.cs
- CodeNamespaceImport.cs
- SchemaHelper.cs
- FormsAuthenticationModule.cs
- DynamicValueConverter.cs
- Label.cs
- DBSchemaRow.cs
- FormattedText.cs
- ProvidePropertyAttribute.cs
- AttributeQuery.cs
- ReadWriteObjectLock.cs
- XmlSchemaAttributeGroupRef.cs
- ScriptResourceAttribute.cs
- DocumentViewerBase.cs
- ViewPort3D.cs
- APCustomTypeDescriptor.cs
- EdgeProfileValidation.cs
- SqlDataSourceFilteringEventArgs.cs
- EventRouteFactory.cs
- GridViewColumnCollection.cs
- ScrollItemProviderWrapper.cs
- XmlQueryOutput.cs
- SystemThemeKey.cs
- DeviceSpecificDesigner.cs