Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- BlobPersonalizationState.cs
- HierarchicalDataSourceConverter.cs
- EventDescriptor.cs
- PropertyReferenceSerializer.cs
- TableLayoutStyle.cs
- XamlSerializationHelper.cs
- SaveFileDialog.cs
- DataGridViewColumnEventArgs.cs
- ScrollItemPatternIdentifiers.cs
- RowType.cs
- FigureHelper.cs
- XmlSchemaCollection.cs
- ZoomPercentageConverter.cs
- CompilerCollection.cs
- WebPartConnectionsConnectVerb.cs
- CreateUserErrorEventArgs.cs
- LoginDesignerUtil.cs
- PropertyRef.cs
- ContentFileHelper.cs
- ZipIOZip64EndOfCentralDirectoryLocatorBlock.cs
- RegexRunnerFactory.cs
- NativeMethods.cs
- ClientOptions.cs
- DataGridViewSortCompareEventArgs.cs
- XmlILConstructAnalyzer.cs
- XmlnsPrefixAttribute.cs
- _ConnectionGroup.cs
- DelegatedStream.cs
- ContextMenu.cs
- CacheAxisQuery.cs
- ConnectionManagementElementCollection.cs
- OutputCacheSettingsSection.cs
- CompositeFontParser.cs
- ConfigurationException.cs
- WorkflowControlEndpoint.cs
- ParameterReplacerVisitor.cs
- InstanceDataCollection.cs
- SafeSecurityHelper.cs
- SortQueryOperator.cs
- NetSectionGroup.cs
- X509ServiceCertificateAuthentication.cs
- ShaperBuffers.cs
- ACE.cs
- TriggerAction.cs
- DesignTimeVisibleAttribute.cs
- TypeForwardedFromAttribute.cs
- PerspectiveCamera.cs
- ZipIOExtraFieldZip64Element.cs
- PropertyInformation.cs
- AttributeCallbackBuilder.cs
- AutomationElementCollection.cs
- Semaphore.cs
- ModifierKeysValueSerializer.cs
- HttpVersion.cs
- WebBrowser.cs
- ExceptionDetail.cs
- FontDifferentiator.cs
- RelOps.cs
- XamlTemplateSerializer.cs
- UniqueIdentifierService.cs
- OperandQuery.cs
- RegexMatch.cs
- FormView.cs
- DiffuseMaterial.cs
- LoadedOrUnloadedOperation.cs
- CodeTypeMemberCollection.cs
- ActivityMetadata.cs
- Brushes.cs
- ScheduleChanges.cs
- MdiWindowListItemConverter.cs
- SharedPerformanceCounter.cs
- SqlAliasesReferenced.cs
- ColumnHeaderConverter.cs
- GeneralTransformGroup.cs
- HtmlWindow.cs
- SQLDecimal.cs
- PassportAuthenticationEventArgs.cs
- ApplyImportsAction.cs
- Int16Animation.cs
- OptimizedTemplateContent.cs
- ZipIOModeEnforcingStream.cs
- GlobalEventManager.cs
- Visitors.cs
- FlagsAttribute.cs
- ListViewGroupConverter.cs
- LinqDataSourceDisposeEventArgs.cs
- AlignmentYValidation.cs
- SuspendDesigner.cs
- XmlSchemaAttribute.cs
- BroadcastEventHelper.cs
- WebBodyFormatMessageProperty.cs
- XmlAnyElementAttribute.cs
- CalendarDay.cs
- MenuItem.cs
- NavigateEvent.cs
- XmlWrappingReader.cs
- XmlRawWriter.cs
- FlowDocumentPaginator.cs
- ClusterSafeNativeMethods.cs
- UriTemplateLiteralPathSegment.cs