Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / xsp / System / Web / Configuration / WebPartsSection.cs / 5 / WebPartsSection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Configuration { using System; using System.Configuration; using System.Collections; using System.Collections.Specialized; using System.Security.Principal; using System.Web; using System.Web.Compilation; using System.Web.Configuration; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.Util; using System.Xml; using System.Security.Permissions; /**/ [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class WebPartsSection : ConfigurationSection { private static ConfigurationPropertyCollection _properties; private static readonly ConfigurationProperty _propEnableExport = new ConfigurationProperty("enableExport", typeof(bool), false, ConfigurationPropertyOptions.None); private static readonly ConfigurationProperty _propPersonalization = new ConfigurationProperty("personalization", typeof(WebPartsPersonalization), null, ConfigurationPropertyOptions.None); private static readonly ConfigurationProperty _propTransformers = new ConfigurationProperty("transformers", typeof(TransformerInfoCollection), null, ConfigurationPropertyOptions.IsDefaultCollection); static WebPartsSection() { // Property initialization _properties = new ConfigurationPropertyCollection(); _properties.Add(_propEnableExport); _properties.Add(_propPersonalization); _properties.Add(_propTransformers); } public WebPartsSection() { } /* protected override void InitializeDefault() { /* Don't Add to Basicmap AuthorizationRule rule0 = new AuthorizationRule(AuthorizationRuleAction.Deny); rule0.Users.Add("*"); rule0.Verbs.Add("enterSharedScope"); Personalization.Authorization.Rules.Add(rule0); AuthorizationRule rule1 = new AuthorizationRule(AuthorizationRuleAction.Allow); rule1.Users.Add("*"); rule1.Verbs.Add("modifyState"); Personalization.Authorization.Rules.Add(rule1); */ /* } */ [ConfigurationProperty("enableExport", DefaultValue = false)] public bool EnableExport { get { return (bool)base[_propEnableExport]; } set { base[_propEnableExport] = value; } } [ConfigurationProperty("personalization")] public WebPartsPersonalization Personalization { get { return (WebPartsPersonalization)base[_propPersonalization]; } } /// protected override ConfigurationPropertyCollection Properties { get { return _properties; } } [ConfigurationProperty("transformers")] public TransformerInfoCollection Transformers { get { return (TransformerInfoCollection)base[_propTransformers]; } } protected override object GetRuntimeObject() { Personalization.ValidateAuthorization(); return base.GetRuntimeObject(); } } } // 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.Configuration; using System.Collections; using System.Collections.Specialized; using System.Security.Principal; using System.Web; using System.Web.Compilation; using System.Web.Configuration; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.Util; using System.Xml; using System.Security.Permissions; /**/ [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class WebPartsSection : ConfigurationSection { private static ConfigurationPropertyCollection _properties; private static readonly ConfigurationProperty _propEnableExport = new ConfigurationProperty("enableExport", typeof(bool), false, ConfigurationPropertyOptions.None); private static readonly ConfigurationProperty _propPersonalization = new ConfigurationProperty("personalization", typeof(WebPartsPersonalization), null, ConfigurationPropertyOptions.None); private static readonly ConfigurationProperty _propTransformers = new ConfigurationProperty("transformers", typeof(TransformerInfoCollection), null, ConfigurationPropertyOptions.IsDefaultCollection); static WebPartsSection() { // Property initialization _properties = new ConfigurationPropertyCollection(); _properties.Add(_propEnableExport); _properties.Add(_propPersonalization); _properties.Add(_propTransformers); } public WebPartsSection() { } /* protected override void InitializeDefault() { /* Don't Add to Basicmap AuthorizationRule rule0 = new AuthorizationRule(AuthorizationRuleAction.Deny); rule0.Users.Add("*"); rule0.Verbs.Add("enterSharedScope"); Personalization.Authorization.Rules.Add(rule0); AuthorizationRule rule1 = new AuthorizationRule(AuthorizationRuleAction.Allow); rule1.Users.Add("*"); rule1.Verbs.Add("modifyState"); Personalization.Authorization.Rules.Add(rule1); */ /* } */ [ConfigurationProperty("enableExport", DefaultValue = false)] public bool EnableExport { get { return (bool)base[_propEnableExport]; } set { base[_propEnableExport] = value; } } [ConfigurationProperty("personalization")] public WebPartsPersonalization Personalization { get { return (WebPartsPersonalization)base[_propPersonalization]; } } /// protected override ConfigurationPropertyCollection Properties { get { return _properties; } } [ConfigurationProperty("transformers")] public TransformerInfoCollection Transformers { get { return (TransformerInfoCollection)base[_propTransformers]; } } protected override object GetRuntimeObject() { Personalization.ValidateAuthorization(); return base.GetRuntimeObject(); } } } // 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
- FormViewCommandEventArgs.cs
- AncestorChangedEventArgs.cs
- MessageSmuggler.cs
- _FixedSizeReader.cs
- ThreadExceptionDialog.cs
- SafeNativeMethodsCLR.cs
- CodeCommentStatementCollection.cs
- ManagementInstaller.cs
- LinqDataSourceContextEventArgs.cs
- ComplusEndpointConfigContainer.cs
- StorageComplexPropertyMapping.cs
- TrackPoint.cs
- MatrixUtil.cs
- ManagedIStream.cs
- DesignerForm.cs
- DockProviderWrapper.cs
- NativeMethods.cs
- ColorAnimationBase.cs
- RenameRuleObjectDialog.Designer.cs
- UpWmlPageAdapter.cs
- Size3DConverter.cs
- TextViewElement.cs
- CodeMemberField.cs
- WindowsRegion.cs
- FactoryMaker.cs
- QueryRelOp.cs
- OSEnvironmentHelper.cs
- ToolStripDropDownItem.cs
- WindowsSecurityTokenAuthenticator.cs
- ChtmlCommandAdapter.cs
- AnnotationObservableCollection.cs
- XmlValidatingReader.cs
- ExpressionEditorAttribute.cs
- WeakReference.cs
- GC.cs
- VerticalAlignConverter.cs
- FrameSecurityDescriptor.cs
- Bookmark.cs
- ConfigXmlText.cs
- RowType.cs
- StatusBarDrawItemEvent.cs
- Matrix3D.cs
- AutomationEventArgs.cs
- ModelVisual3D.cs
- PackageRelationshipCollection.cs
- ThreadInterruptedException.cs
- Trace.cs
- InvokePattern.cs
- CreatingCookieEventArgs.cs
- EventSourceCreationData.cs
- TriggerAction.cs
- CompositeControl.cs
- PerformanceCounterPermissionAttribute.cs
- XamlParser.cs
- SatelliteContractVersionAttribute.cs
- TypeDelegator.cs
- SqlClientFactory.cs
- DynamicRendererThreadManager.cs
- AffineTransform3D.cs
- SqlAggregateChecker.cs
- MatrixAnimationUsingKeyFrames.cs
- EntityTypeEmitter.cs
- SemanticAnalyzer.cs
- TypeToStringValueConverter.cs
- SHA1CryptoServiceProvider.cs
- GatewayIPAddressInformationCollection.cs
- XmlSchemaExporter.cs
- TransactionalPackage.cs
- XsltConvert.cs
- MemberDescriptor.cs
- ExpressionNode.cs
- DataSourceProvider.cs
- SiblingIterators.cs
- TableAdapterManagerNameHandler.cs
- RotationValidation.cs
- WebScriptServiceHostFactory.cs
- Span.cs
- DbProviderSpecificTypePropertyAttribute.cs
- FontDialog.cs
- _HelperAsyncResults.cs
- PrintPageEvent.cs
- WebServiceMethodData.cs
- TCPClient.cs
- UriExt.cs
- HitTestFilterBehavior.cs
- FacetChecker.cs
- Win32Exception.cs
- MasterPageCodeDomTreeGenerator.cs
- WebPartZoneBase.cs
- CombinedGeometry.cs
- EngineSite.cs
- ping.cs
- Nullable.cs
- Command.cs
- XmlSchemaImport.cs
- Row.cs
- ConstructorExpr.cs
- _SingleItemRequestCache.cs
- HttpCookieCollection.cs
- ReadOnlyDictionary.cs