Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// 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; } } } } // 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
- ScrollItemProviderWrapper.cs
- CodeDomSerializerException.cs
- OciHandle.cs
- XmlElementCollection.cs
- DataBinding.cs
- HttpCookiesSection.cs
- RSAOAEPKeyExchangeDeformatter.cs
- PropertyGridView.cs
- ListViewPagedDataSource.cs
- JoinElimination.cs
- TypeSemantics.cs
- XmlTypeAttribute.cs
- EntityDescriptor.cs
- StandardToolWindows.cs
- WebPartConnectVerb.cs
- FixedSOMPageElement.cs
- OdbcParameter.cs
- AuthenticateEventArgs.cs
- TypeLibConverter.cs
- HotSpot.cs
- ExtenderProviderService.cs
- DynamicResourceExtension.cs
- SapiRecoInterop.cs
- SqlExpressionNullability.cs
- CodeTypeOfExpression.cs
- ThumbButtonInfoCollection.cs
- DotExpr.cs
- UInt64Storage.cs
- SByteConverter.cs
- TemplateBaseAction.cs
- PermissionAttributes.cs
- Rect3D.cs
- DebugInfoGenerator.cs
- DesignBindingValueUIHandler.cs
- LinearKeyFrames.cs
- FilteredDataSetHelper.cs
- FtpRequestCacheValidator.cs
- XmlDataDocument.cs
- BlurBitmapEffect.cs
- ViewStateException.cs
- UIPermission.cs
- DataControlField.cs
- documentation.cs
- SafeLibraryHandle.cs
- IisTraceWebEventProvider.cs
- CodeNamespaceImportCollection.cs
- WebSysDefaultValueAttribute.cs
- QilExpression.cs
- CultureInfo.cs
- Blend.cs
- UserControlCodeDomTreeGenerator.cs
- ActionMismatchAddressingException.cs
- ScriptManagerProxy.cs
- CanonicalFormWriter.cs
- XmlTextEncoder.cs
- WindowsGraphicsCacheManager.cs
- IssuedTokenServiceCredential.cs
- CodeDomConfigurationHandler.cs
- FixedTextSelectionProcessor.cs
- _BufferOffsetSize.cs
- CachedFontFace.cs
- TextServicesCompartment.cs
- SoapSchemaExporter.cs
- IpcPort.cs
- CreateUserWizardStep.cs
- CodeNamespace.cs
- documentsequencetextpointer.cs
- ObjectParameter.cs
- DecimalAnimationBase.cs
- QuadraticBezierSegment.cs
- KeyboardEventArgs.cs
- NavigationEventArgs.cs
- EmptyStringExpandableObjectConverter.cs
- ResourceAssociationSet.cs
- SerialReceived.cs
- SystemWebCachingSectionGroup.cs
- MarkupProperty.cs
- CodeCatchClause.cs
- FormatSettings.cs
- SoapServerMethod.cs
- SystemFonts.cs
- BevelBitmapEffect.cs
- SiteOfOriginContainer.cs
- Quaternion.cs
- CodeRemoveEventStatement.cs
- PropertyHelper.cs
- TableCell.cs
- UnconditionalPolicy.cs
- TextParagraph.cs
- ObjectListField.cs
- _ScatterGatherBuffers.cs
- InstanceNormalEvent.cs
- QilList.cs
- RuleSettingsCollection.cs
- ServerIdentity.cs
- AttachedAnnotation.cs
- COM2PictureConverter.cs
- SupportingTokenAuthenticatorSpecification.cs
- DbResourceAllocator.cs
- SmtpNetworkElement.cs