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
- _LazyAsyncResult.cs
- ADMembershipUser.cs
- RegexReplacement.cs
- NameNode.cs
- LinkedList.cs
- DataView.cs
- XmlQueryStaticData.cs
- DbConnectionOptions.cs
- RtfNavigator.cs
- SecurityException.cs
- Serialization.cs
- CommandEventArgs.cs
- Facet.cs
- DataSetUtil.cs
- GradientStopCollection.cs
- HttpFileCollectionWrapper.cs
- EntityConnectionStringBuilder.cs
- WebProxyScriptElement.cs
- SqlCrossApplyToCrossJoin.cs
- BindingExpressionBase.cs
- TextTrailingCharacterEllipsis.cs
- Label.cs
- User.cs
- XmlSchemaGroup.cs
- XPathNavigator.cs
- UriTemplateHelpers.cs
- SqlInfoMessageEvent.cs
- TextControl.cs
- PrinterSettings.cs
- ContentControl.cs
- OuterGlowBitmapEffect.cs
- FileLoadException.cs
- CroppedBitmap.cs
- ObjectViewQueryResultData.cs
- _ChunkParse.cs
- ObjectItemAttributeAssemblyLoader.cs
- DesignerExtenders.cs
- CompressStream.cs
- MetadataArtifactLoaderCompositeFile.cs
- RewritingPass.cs
- ZipIOEndOfCentralDirectoryBlock.cs
- SerialReceived.cs
- TraceSection.cs
- ActivityDesignerResources.cs
- ConfigurationElement.cs
- NativeObjectSecurity.cs
- StringWriter.cs
- NominalTypeEliminator.cs
- MILUtilities.cs
- RowUpdatedEventArgs.cs
- AlternateView.cs
- WebPartVerbsEventArgs.cs
- LoginView.cs
- RecognizedPhrase.cs
- ListBindableAttribute.cs
- EDesignUtil.cs
- SystemIPGlobalStatistics.cs
- ProfileGroupSettings.cs
- TabletDeviceInfo.cs
- Size.cs
- FileAuthorizationModule.cs
- ProxyAttribute.cs
- ErrorStyle.cs
- MaskedTextProvider.cs
- XPathEmptyIterator.cs
- BridgeDataReader.cs
- MetadataFile.cs
- SchemaMapping.cs
- ModelTreeManager.cs
- NamespaceList.cs
- DrawingDrawingContext.cs
- TypeUnloadedException.cs
- SynchronousChannel.cs
- MouseBinding.cs
- SignatureConfirmationElement.cs
- Type.cs
- RequestQueryParser.cs
- ImageDrawing.cs
- TableChangeProcessor.cs
- DataServiceRequestException.cs
- WmfPlaceableFileHeader.cs
- ClockController.cs
- CacheRequest.cs
- CroppedBitmap.cs
- FusionWrap.cs
- ServiceManagerHandle.cs
- ListBindingHelper.cs
- RequestCachingSection.cs
- AttributeUsageAttribute.cs
- AccessDataSourceDesigner.cs
- PageSetupDialog.cs
- InputLangChangeEvent.cs
- Cursor.cs
- FileInfo.cs
- BackStopAuthenticationModule.cs
- WindowsEditBox.cs
- XmlSchemaObjectCollection.cs
- LogLogRecordEnumerator.cs
- ContainerTracking.cs
- Function.cs