Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / UserControlParser.cs / 1 / UserControlParser.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* * Implements the ASP.NET template parser * * Copyright (c) 1998 Microsoft Corporation */ namespace System.Web.UI { using System; using System.Collections; using System.IO; using System.Security; using System.Security.Permissions; using System.Web.Compilation; using System.Globalization; using System.Web.Caching; /* * Parser for declarative controls */ internal class UserControlParser : TemplateControlParser { private bool _fSharedPartialCaching; internal bool FSharedPartialCaching { get { return _fSharedPartialCaching ; } } // Get default settings from config internal override void ProcessConfigSettings() { base.ProcessConfigSettings(); ApplyBaseType(); } // Get the default baseType from PagesConfig. internal virtual void ApplyBaseType() { if (PagesConfig != null) { if (PagesConfig.UserControlBaseTypeInternal != null) BaseType = PagesConfig.UserControlBaseTypeInternal; } } internal override Type DefaultBaseType { get { return typeof(System.Web.UI.UserControl); } } internal const string defaultDirectiveName = "control"; internal override string DefaultDirectiveName { get { return defaultDirectiveName; } } internal override Type DefaultFileLevelBuilderType { get { return typeof(FileLevelUserControlBuilder); } } internal override RootBuilder CreateDefaultFileLevelBuilder() { return new FileLevelUserControlBuilder(); } /* * Process the contents of the <%@ OutputCache ... %> directive */ internal override void ProcessOutputCacheDirective(string directiveName, IDictionary directive) { string sqlDependency; Util.GetAndRemoveBooleanAttribute(directive, "shared", ref _fSharedPartialCaching); sqlDependency = Util.GetAndRemoveNonEmptyAttribute(directive, "sqldependency"); if (sqlDependency != null) { // Validate the sqldependency attribute SqlCacheDependency.ValidateOutputCacheDependencyString(sqlDependency, false); OutputCacheParameters.SqlDependency = sqlDependency; } base.ProcessOutputCacheDirective(directiveName, directive); } internal override bool FVaryByParamsRequiredOnOutputCache { get { return OutputCacheParameters.VaryByControl == null; } } internal override string UnknownOutputCacheAttributeError { get { return SR.Attr_not_supported_in_ucdirective; } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ReadWriteSpinLock.cs
- ISO2022Encoding.cs
- ImageCodecInfo.cs
- SmiGettersStream.cs
- WsdlContractConversionContext.cs
- ExceptionUtil.cs
- OSFeature.cs
- CurrencyWrapper.cs
- HandlerFactoryWrapper.cs
- HttpValueCollection.cs
- CharacterBufferReference.cs
- EnterpriseServicesHelper.cs
- RevocationPoint.cs
- EventSinkHelperWriter.cs
- TableItemStyle.cs
- ComNativeDescriptor.cs
- ClipboardProcessor.cs
- SelfIssuedAuthAsymmetricKey.cs
- StylusLogic.cs
- MetadataExchangeClient.cs
- GlobalEventManager.cs
- DbInsertCommandTree.cs
- AdPostCacheSubstitution.cs
- DataGridSortCommandEventArgs.cs
- SHA1.cs
- AutoResetEvent.cs
- MobilePage.cs
- GPPOINT.cs
- RC2CryptoServiceProvider.cs
- ValidationResult.cs
- ObjectNavigationPropertyMapping.cs
- DataGridViewRowHeaderCell.cs
- XmlDesigner.cs
- ScriptRegistrationManager.cs
- StatusBar.cs
- NavigationExpr.cs
- UpDownBaseDesigner.cs
- ValueExpressions.cs
- QueryOperationResponseOfT.cs
- TranslateTransform3D.cs
- ButtonBaseAdapter.cs
- unsafeIndexingFilterStream.cs
- DoWorkEventArgs.cs
- TypeDescriptionProvider.cs
- DNS.cs
- ServiceBehaviorElementCollection.cs
- MethodImplAttribute.cs
- Compiler.cs
- DetailsView.cs
- SaveFileDialogDesigner.cs
- MediaContextNotificationWindow.cs
- ObjectDataProvider.cs
- IISMapPath.cs
- AsyncOperationLifetimeManager.cs
- SystemDiagnosticsSection.cs
- FormCollection.cs
- X509Utils.cs
- BuilderPropertyEntry.cs
- ClientUriBehavior.cs
- OdbcEnvironment.cs
- Span.cs
- GiveFeedbackEventArgs.cs
- AnonymousIdentificationModule.cs
- Rotation3DAnimation.cs
- FtpCachePolicyElement.cs
- MarkupExtensionParser.cs
- VariableQuery.cs
- TreeChangeInfo.cs
- CompareValidator.cs
- DocumentAutomationPeer.cs
- CodeGen.cs
- Screen.cs
- DrawingImage.cs
- UIElement3D.cs
- ArgIterator.cs
- ClientBuildManagerCallback.cs
- LinkConverter.cs
- AccessDataSourceWizardForm.cs
- ColorConverter.cs
- ExportOptions.cs
- TextDecorationLocationValidation.cs
- DataSetSchema.cs
- ColumnHeaderConverter.cs
- SubMenuStyle.cs
- RuntimeConfigurationRecord.cs
- TableLayoutStyleCollection.cs
- HttpCapabilitiesEvaluator.cs
- PrintingPermissionAttribute.cs
- Utils.cs
- IndexingContentUnit.cs
- WebScriptEnablingElement.cs
- PictureBox.cs
- XsdValidatingReader.cs
- HttpPostedFileWrapper.cs
- DescendentsWalker.cs
- StateManagedCollection.cs
- SecurityTokenSerializer.cs
- LoginNameDesigner.cs
- BackStopAuthenticationModule.cs
- ExpressionLexer.cs