Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / DesignTimeParseData.cs / 2 / 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) { // 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- PackWebRequest.cs
- DefaultWorkflowSchedulerService.cs
- SingleKeyFrameCollection.cs
- GraphicsContext.cs
- ImageMap.cs
- Msec.cs
- CompositeKey.cs
- Brushes.cs
- TaskSchedulerException.cs
- XmlSerializerSection.cs
- nulltextcontainer.cs
- RemotingHelper.cs
- TableParagraph.cs
- ZipIOCentralDirectoryDigitalSignature.cs
- AttributeProviderAttribute.cs
- XmlLoader.cs
- RNGCryptoServiceProvider.cs
- PrintPreviewGraphics.cs
- HttpListener.cs
- FullTextState.cs
- controlskin.cs
- DocumentProperties.cs
- XpsFilter.cs
- OutputCacheProfile.cs
- CommandHelper.cs
- Control.cs
- FontWeight.cs
- ConfigurationStrings.cs
- CompositeFontFamily.cs
- XsdDuration.cs
- DataObjectMethodAttribute.cs
- FormViewUpdatedEventArgs.cs
- ProfileGroupSettings.cs
- OrderedDictionaryStateHelper.cs
- InternalTypeHelper.cs
- PointCollection.cs
- TreeViewImageIndexConverter.cs
- linebase.cs
- CryptoApi.cs
- KeyNotFoundException.cs
- RemoteWebConfigurationHostServer.cs
- SecurityUtils.cs
- FlowDocumentPage.cs
- MultiView.cs
- RegisteredDisposeScript.cs
- PageCatalogPart.cs
- KeyFrames.cs
- BoundField.cs
- UInt32Storage.cs
- TextElement.cs
- SolidColorBrush.cs
- ComponentResourceManager.cs
- FrameworkReadOnlyPropertyMetadata.cs
- WebPartConnectionsConnectVerb.cs
- HtmlInputText.cs
- AttributeCollection.cs
- WindowsSpinner.cs
- BufferedStream.cs
- DecoderNLS.cs
- linebase.cs
- MarkupWriter.cs
- HttpBrowserCapabilitiesWrapper.cs
- Rule.cs
- Wildcard.cs
- DoubleCollection.cs
- DiagnosticTrace.cs
- ToolStripManager.cs
- StorageComplexTypeMapping.cs
- StringUtil.cs
- TextProviderWrapper.cs
- WindowsClaimSet.cs
- CodeChecksumPragma.cs
- DoubleKeyFrameCollection.cs
- AccessText.cs
- Matrix3DStack.cs
- FilterableAttribute.cs
- ControlPropertyNameConverter.cs
- ADRoleFactoryConfiguration.cs
- CheckStoreFileValidityRequest.cs
- Point3DAnimationUsingKeyFrames.cs
- Application.cs
- DataListItemCollection.cs
- ToolboxItemLoader.cs
- IxmlLineInfo.cs
- ECDiffieHellmanCng.cs
- OletxEnlistment.cs
- URL.cs
- BoundsDrawingContextWalker.cs
- OleDbException.cs
- XpsSerializationManager.cs
- MergeLocalizationDirectives.cs
- EntityConnectionStringBuilderItem.cs
- ToolStripItemTextRenderEventArgs.cs
- BrowserTree.cs
- ToolStripItemCollection.cs
- TextUtf8RawTextWriter.cs
- ProbeDuplexAsyncResult.cs
- xmlformatgeneratorstatics.cs
- ClosableStream.cs
- DeliveryRequirementsAttribute.cs