Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / xsp / System / Web / UI / DesignTimeParseData.cs / 1 / DesignTimeParseData.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System; using System.Collections; using System.Collections.Generic; using System.ComponentModel; using System.ComponentModel.Design; using System.Security.Permissions; ///[AspNetHostingPermission(SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)] public sealed class DesignTimeParseData { private IDesignerHost _designerHost; private string _documentUrl; private EventHandler _dataBindingHandler; private string _parseText; private string _filter; private bool _shouldApplyTheme = false; private ICollection _userControlRegisterEntries; public DesignTimeParseData(IDesignerHost designerHost, string parseText) : this(designerHost, parseText, String.Empty) { } public DesignTimeParseData(IDesignerHost designerHost, string parseText, string filter) { // note that designerHost can be null, we continue on without using any designer-specific services. if (String.IsNullOrEmpty(parseText)) { throw new ArgumentNullException("parseText"); } _designerHost = designerHost; _parseText = parseText; _filter = filter; } public bool ShouldApplyTheme { get { return _shouldApplyTheme; } set { _shouldApplyTheme = value; } } public EventHandler DataBindingHandler { get { return _dataBindingHandler; } set { _dataBindingHandler = value; } } public IDesignerHost DesignerHost { get { return _designerHost; } } public string DocumentUrl { get { if (_documentUrl == null) { return String.Empty; } return _documentUrl; } set { _documentUrl = value; } } public string Filter { get { if (_filter == null) { return String.Empty; } return _filter; } } public string ParseText { get { return _parseText; } } public ICollection UserControlRegisterEntries { get { return _userControlRegisterEntries; } } internal void SetUserControlRegisterEntries(ICollection userControlRegisterEntries, List tagRegisterEntries) { if (userControlRegisterEntries == null && tagRegisterEntries == null) { return; } List allEntries = new List (); if (userControlRegisterEntries != null) { foreach (UserControlRegisterEntry entry in userControlRegisterEntries) { allEntries.Add(new Triplet(entry.TagPrefix, new Pair(entry.TagName, entry.UserControlSource.ToString()), null)); } } if (tagRegisterEntries != null) { foreach (TagNamespaceRegisterEntry entry in tagRegisterEntries) { allEntries.Add(new Triplet(entry.TagPrefix, null, new Pair(entry.Namespace, entry.AssemblyName))); } } _userControlRegisterEntries = allEntries; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System; using System.Collections; using System.Collections.Generic; using System.ComponentModel; using System.ComponentModel.Design; using System.Security.Permissions; ///[AspNetHostingPermission(SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)] public sealed class DesignTimeParseData { private IDesignerHost _designerHost; private string _documentUrl; private EventHandler _dataBindingHandler; private string _parseText; private string _filter; private bool _shouldApplyTheme = false; private ICollection _userControlRegisterEntries; public DesignTimeParseData(IDesignerHost designerHost, string parseText) : this(designerHost, parseText, String.Empty) { } public DesignTimeParseData(IDesignerHost designerHost, string parseText, string filter) { // note that designerHost can be null, we continue on without using any designer-specific services. if (String.IsNullOrEmpty(parseText)) { throw new ArgumentNullException("parseText"); } _designerHost = designerHost; _parseText = parseText; _filter = filter; } public bool ShouldApplyTheme { get { return _shouldApplyTheme; } set { _shouldApplyTheme = value; } } public EventHandler DataBindingHandler { get { return _dataBindingHandler; } set { _dataBindingHandler = value; } } public IDesignerHost DesignerHost { get { return _designerHost; } } public string DocumentUrl { get { if (_documentUrl == null) { return String.Empty; } return _documentUrl; } set { _documentUrl = value; } } public string Filter { get { if (_filter == null) { return String.Empty; } return _filter; } } public string ParseText { get { return _parseText; } } public ICollection UserControlRegisterEntries { get { return _userControlRegisterEntries; } } internal void SetUserControlRegisterEntries(ICollection userControlRegisterEntries, List tagRegisterEntries) { if (userControlRegisterEntries == null && tagRegisterEntries == null) { return; } List allEntries = new List (); if (userControlRegisterEntries != null) { foreach (UserControlRegisterEntry entry in userControlRegisterEntries) { allEntries.Add(new Triplet(entry.TagPrefix, new Pair(entry.TagName, entry.UserControlSource.ToString()), null)); } } if (tagRegisterEntries != null) { foreach (TagNamespaceRegisterEntry entry in tagRegisterEntries) { allEntries.Add(new Triplet(entry.TagPrefix, null, new Pair(entry.Namespace, entry.AssemblyName))); } } _userControlRegisterEntries = allEntries; } } } // 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
- _Connection.cs
- DataContractSerializer.cs
- BoolExpression.cs
- ProfileManager.cs
- StickyNote.cs
- GlobalItem.cs
- DesignerWithHeader.cs
- AttributeParameterInfo.cs
- TypeGeneratedEventArgs.cs
- AdvancedBindingEditor.cs
- WSTransactionSection.cs
- ProxyWebPartManager.cs
- MethodCallConverter.cs
- DataGridViewRowHeaderCell.cs
- Vector3DConverter.cs
- SystemGatewayIPAddressInformation.cs
- XmlSchemaImport.cs
- URLEditor.cs
- InputScope.cs
- ErrorTableItemStyle.cs
- XmlAttributeCollection.cs
- TextDecorationCollection.cs
- WebBrowserNavigatingEventHandler.cs
- OleDbWrapper.cs
- ConfigXmlSignificantWhitespace.cs
- DesignerView.cs
- MasterPageBuildProvider.cs
- SystemIPInterfaceStatistics.cs
- CannotUnloadAppDomainException.cs
- RecipientServiceModelSecurityTokenRequirement.cs
- CodeStatement.cs
- DataSpaceManager.cs
- QuaternionAnimationUsingKeyFrames.cs
- RoleManagerSection.cs
- CodeCompiler.cs
- TimeStampChecker.cs
- SqlStatistics.cs
- CaseExpr.cs
- EmptyElement.cs
- WebRequestModuleElement.cs
- PagedDataSource.cs
- AuthenticationSection.cs
- TextAnchor.cs
- PostBackTrigger.cs
- MDIWindowDialog.cs
- GeneralTransformGroup.cs
- DecimalAverageAggregationOperator.cs
- ProfileModule.cs
- LinearKeyFrames.cs
- RtfNavigator.cs
- ToolStripStatusLabel.cs
- HttpPostedFileBase.cs
- FrameworkElementFactoryMarkupObject.cs
- LambdaCompiler.Expressions.cs
- XmlReader.cs
- MenuItem.cs
- CipherData.cs
- AQNBuilder.cs
- AttachedPropertiesService.cs
- Style.cs
- ThreadPool.cs
- DynamicValidator.cs
- FormsAuthenticationModule.cs
- AppSettingsExpressionBuilder.cs
- MarkupProperty.cs
- ScriptDescriptor.cs
- EUCJPEncoding.cs
- RectKeyFrameCollection.cs
- XmlSchemaAttributeGroup.cs
- BeginStoryboard.cs
- DXD.cs
- TreeViewImageKeyConverter.cs
- SchemaTableColumn.cs
- ServiceContractGenerator.cs
- XslTransform.cs
- EventMappingSettings.cs
- SetStateDesigner.cs
- ContentOperations.cs
- CorePropertiesFilter.cs
- LinkButton.cs
- DataGridBoolColumn.cs
- LoginName.cs
- TreeViewDesigner.cs
- Graphics.cs
- DeflateStreamAsyncResult.cs
- UrlPath.cs
- DataGridTable.cs
- CellRelation.cs
- XmlDataDocument.cs
- DataPagerField.cs
- ClientBuildManagerCallback.cs
- Rules.cs
- NameValueFileSectionHandler.cs
- httpstaticobjectscollection.cs
- Rect.cs
- ReferencedCollectionType.cs
- CommandEventArgs.cs
- SqlDataSourceStatusEventArgs.cs
- BindingBase.cs
- PersonalizationStateQuery.cs