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
- XmlNodeChangedEventManager.cs
- WindowsPrincipal.cs
- HttpCachePolicyElement.cs
- CaseInsensitiveOrdinalStringComparer.cs
- XmlSubtreeReader.cs
- Automation.cs
- AssertFilter.cs
- SelectionChangedEventArgs.cs
- PtsHelper.cs
- WindowsFormsHostAutomationPeer.cs
- SafeNativeMethods.cs
- AnnotationComponentChooser.cs
- URLAttribute.cs
- XmlQueryType.cs
- FormViewInsertedEventArgs.cs
- DataGridColumnCollection.cs
- BoundColumn.cs
- FlowDocumentView.cs
- ItemAutomationPeer.cs
- Wizard.cs
- WebSysDefaultValueAttribute.cs
- AssociationTypeEmitter.cs
- OdbcParameterCollection.cs
- CodeExporter.cs
- RectAnimationUsingKeyFrames.cs
- CryptographicAttribute.cs
- HMACRIPEMD160.cs
- SectionUpdates.cs
- XslVisitor.cs
- ConfigXmlElement.cs
- CustomUserNameSecurityTokenAuthenticator.cs
- SolidColorBrush.cs
- SchemaElementLookUpTable.cs
- WindowsListView.cs
- KeyTime.cs
- GridViewColumnCollection.cs
- DesignTimeVisibleAttribute.cs
- MetadataArtifactLoaderCompositeResource.cs
- NameValueConfigurationElement.cs
- AsyncResult.cs
- VirtualPath.cs
- XPathChildIterator.cs
- ClientSettings.cs
- TextTreeObjectNode.cs
- RenderingEventArgs.cs
- ToolboxItemCollection.cs
- ChannelEndpointElementCollection.cs
- HWStack.cs
- DataGridViewImageCell.cs
- DataObjectMethodAttribute.cs
- ParallelEnumerable.cs
- MenuAutoFormat.cs
- DropTarget.cs
- DataObject.cs
- Hash.cs
- webeventbuffer.cs
- SettingsBase.cs
- AttachmentService.cs
- ConfigXmlAttribute.cs
- Tool.cs
- ProcessHostFactoryHelper.cs
- WebBrowserUriTypeConverter.cs
- HashAlgorithm.cs
- MulticastOption.cs
- Table.cs
- PresentationTraceSources.cs
- Keywords.cs
- BufferAllocator.cs
- _HeaderInfo.cs
- IntSecurity.cs
- StylusSystemGestureEventArgs.cs
- Socket.cs
- DeferredElementTreeState.cs
- ValidationSummary.cs
- XmlDataSourceNodeDescriptor.cs
- GeneralTransform3D.cs
- _ContextAwareResult.cs
- NetworkInformationException.cs
- SqlConnection.cs
- SqlClientMetaDataCollectionNames.cs
- XamlSerializerUtil.cs
- CrossContextChannel.cs
- SourceItem.cs
- PathSegmentCollection.cs
- VisualBasicSettingsHandler.cs
- UpDownEvent.cs
- AsymmetricSignatureDeformatter.cs
- ManagedWndProcTracker.cs
- ManipulationLogic.cs
- Transform3DCollection.cs
- Config.cs
- ComponentEditorForm.cs
- ServiceThrottlingElement.cs
- ServiceHttpModule.cs
- Binding.cs
- SecurityRequiresReviewAttribute.cs
- EditorAttributeInfo.cs
- OleDbSchemaGuid.cs
- ConnectionConsumerAttribute.cs
- RtfFormatStack.cs