Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / 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; } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ConnectionManagementElementCollection.cs
- NCryptNative.cs
- StreamGeometry.cs
- CodeGenerator.cs
- DateBoldEvent.cs
- ElementHost.cs
- WebEventTraceProvider.cs
- FillRuleValidation.cs
- AttributeQuery.cs
- ManualResetEvent.cs
- DebugControllerThread.cs
- DocumentGrid.cs
- MessageDesigner.cs
- TypographyProperties.cs
- ExpandableObjectConverter.cs
- AnimatedTypeHelpers.cs
- Thumb.cs
- InlineObject.cs
- IMembershipProvider.cs
- ToolStripGrip.cs
- RichTextBox.cs
- FontFamily.cs
- DataGridViewRowPostPaintEventArgs.cs
- EventToken.cs
- DataBoundLiteralControl.cs
- NodeCounter.cs
- PropertyReferenceSerializer.cs
- QuaternionIndependentAnimationStorage.cs
- TreeViewEvent.cs
- XmlLoader.cs
- CatalogZoneBase.cs
- SmiRequestExecutor.cs
- Monitor.cs
- SspiWrapper.cs
- TextStore.cs
- SplineKeyFrames.cs
- SymLanguageType.cs
- OdbcUtils.cs
- AsymmetricSignatureFormatter.cs
- GestureRecognitionResult.cs
- VectorCollectionConverter.cs
- ListItem.cs
- CopyAction.cs
- DoubleAnimationBase.cs
- DbProviderFactoriesConfigurationHandler.cs
- WebPermission.cs
- TemplateKey.cs
- IDispatchConstantAttribute.cs
- WebBrowser.cs
- QilReference.cs
- ClientFormsAuthenticationCredentials.cs
- HttpResponse.cs
- storepermission.cs
- VoiceChangeEventArgs.cs
- FilterQuery.cs
- PropertyFilterAttribute.cs
- Misc.cs
- WebExceptionStatus.cs
- ToolStripLabel.cs
- DesigntimeLicenseContext.cs
- SqlDependency.cs
- DispatchChannelSink.cs
- ValueType.cs
- DecimalStorage.cs
- CodeDomConfigurationHandler.cs
- AnimationClock.cs
- MdiWindowListItemConverter.cs
- CollectionViewSource.cs
- AssemblyAttributesGoHere.cs
- Row.cs
- ParameterCollectionEditorForm.cs
- SystemUdpStatistics.cs
- AlternateViewCollection.cs
- LineUtil.cs
- TcpSocketManager.cs
- PassportAuthenticationEventArgs.cs
- SqlServices.cs
- DesignerAttribute.cs
- ToolStripOverflow.cs
- DataKeyCollection.cs
- SqlDataSourceConfigureSelectPanel.cs
- FeatureManager.cs
- TypeUnloadedException.cs
- SiteMapHierarchicalDataSourceView.cs
- PerformanceCountersElement.cs
- JoinSymbol.cs
- wmiprovider.cs
- SoapIncludeAttribute.cs
- DoubleCollectionValueSerializer.cs
- IDReferencePropertyAttribute.cs
- ReadOnlyPropertyMetadata.cs
- TextElementEnumerator.cs
- XmlSchemaAny.cs
- RemotingConfiguration.cs
- ColorMatrix.cs
- DataGridTextBox.cs
- DataGridViewCellEventArgs.cs
- FixedDocumentSequencePaginator.cs
- EntityCollectionChangedParams.cs
- XamlFilter.cs