Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / xsp / System / Web / Configuration / SecurityPolicySection.cs / 1 / 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]; } } } } // 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; /* 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]; } } } } // 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
- WebHeaderCollection.cs
- FormView.cs
- DataBindingCollection.cs
- SimpleType.cs
- GroupBoxRenderer.cs
- PeerInvitationResponse.cs
- ColorMatrix.cs
- ButtonColumn.cs
- PostBackTrigger.cs
- RuleConditionDialog.Designer.cs
- OpenTypeLayout.cs
- CopyOfAction.cs
- PartManifestEntry.cs
- ContentType.cs
- ActivityCodeDomSerializer.cs
- EventProxy.cs
- SqlConnectionStringBuilder.cs
- TriggerBase.cs
- OleDbErrorCollection.cs
- ToolbarAUtomationPeer.cs
- DispatcherTimer.cs
- RightsManagementManager.cs
- HttpProfileBase.cs
- GeneralTransform3D.cs
- ConstructorNeedsTagAttribute.cs
- DesignTimeDataBinding.cs
- AsyncWaitHandle.cs
- SmiRecordBuffer.cs
- JpegBitmapEncoder.cs
- FederatedMessageSecurityOverHttpElement.cs
- TopClause.cs
- PolicyStatement.cs
- Parser.cs
- EntitySqlQueryCacheEntry.cs
- StickyNoteAnnotations.cs
- TextPenaltyModule.cs
- ComponentResourceKeyConverter.cs
- XmlEntity.cs
- Table.cs
- Visual3D.cs
- AspProxy.cs
- NameObjectCollectionBase.cs
- SystemBrushes.cs
- backend.cs
- CorrelationHandle.cs
- WebBrowserPermission.cs
- TagPrefixCollection.cs
- DataSysAttribute.cs
- DataGridParentRows.cs
- BitmapEffectOutputConnector.cs
- AppDomain.cs
- MenuCommand.cs
- CurrencyWrapper.cs
- DocumentXPathNavigator.cs
- LayoutEngine.cs
- SqlFileStream.cs
- DataRow.cs
- AssemblyUtil.cs
- SapiAttributeParser.cs
- SparseMemoryStream.cs
- ManifestSignatureInformation.cs
- LassoHelper.cs
- MultiDataTrigger.cs
- AnnotationResourceChangedEventArgs.cs
- Parsers.cs
- CommandEventArgs.cs
- WebSysDescriptionAttribute.cs
- OleDbReferenceCollection.cs
- XmlSchemaSimpleContent.cs
- SemaphoreFullException.cs
- ObjectKeyFrameCollection.cs
- PlaceHolder.cs
- SqlTypeConverter.cs
- RegexWriter.cs
- PresentationSource.cs
- Int32RectValueSerializer.cs
- WhitespaceRuleLookup.cs
- BinaryMessageFormatter.cs
- DbParameterCollectionHelper.cs
- Parser.cs
- NameValueConfigurationElement.cs
- Int64Converter.cs
- PngBitmapDecoder.cs
- SecurityTokenRequirement.cs
- SpoolingTask.cs
- KoreanCalendar.cs
- StyleCollection.cs
- Pointer.cs
- PixelShader.cs
- FileEnumerator.cs
- UserInitiatedRoutedEventPermissionAttribute.cs
- LayoutSettings.cs
- RelationshipEnd.cs
- RayMeshGeometry3DHitTestResult.cs
- ColorPalette.cs
- MetadataHelper.cs
- SQLDecimalStorage.cs
- CodeObject.cs
- translator.cs
- TextTreeTextBlock.cs