Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / 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. //------------------------------------------------------------------------------ // // 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
- ContactManager.cs
- ResourceFallbackManager.cs
- RegexTree.cs
- GPRECT.cs
- NumberSubstitution.cs
- ValidationResult.cs
- TextParentUndoUnit.cs
- Exceptions.cs
- JpegBitmapEncoder.cs
- SqlNotificationRequest.cs
- EnumValAlphaComparer.cs
- ListBoxItemWrapperAutomationPeer.cs
- OdbcConnectionStringbuilder.cs
- DataGridRelationshipRow.cs
- WebPartMovingEventArgs.cs
- DataBoundControlHelper.cs
- HtmlTable.cs
- BamlTreeMap.cs
- BuildResultCache.cs
- TextParentUndoUnit.cs
- designeractionbehavior.cs
- TypeResolver.cs
- AddInBase.cs
- MetadataItemCollectionFactory.cs
- CharacterBuffer.cs
- HostedHttpTransportManager.cs
- TransactionContextManager.cs
- DesignerActionService.cs
- ArgumentException.cs
- WebPartMovingEventArgs.cs
- FormatConvertedBitmap.cs
- ReachDocumentPageSerializer.cs
- CalendarData.cs
- RegexMatchCollection.cs
- PointAnimation.cs
- UICuesEvent.cs
- XmlQuerySequence.cs
- FrameworkContentElement.cs
- DispatcherTimer.cs
- ProcessHost.cs
- ActivityDesignerResources.cs
- PrintDocument.cs
- ActivityExecutor.cs
- XmlArrayItemAttributes.cs
- SafeBitVector32.cs
- VirtualPathProvider.cs
- HandoffBehavior.cs
- Root.cs
- SocketStream.cs
- regiisutil.cs
- WebDisplayNameAttribute.cs
- TextBlockAutomationPeer.cs
- XmlComplianceUtil.cs
- Fonts.cs
- CngUIPolicy.cs
- HtmlProps.cs
- EmptyQuery.cs
- Util.cs
- PersistenceProviderDirectory.cs
- RangeBase.cs
- CatalogPartChrome.cs
- CuspData.cs
- EntityContainerEntitySetDefiningQuery.cs
- MenuItemCollectionEditorDialog.cs
- PerformanceCountersElement.cs
- InputReferenceExpression.cs
- Int64Converter.cs
- ErrorHandler.cs
- AssemblyCache.cs
- AdornerPresentationContext.cs
- ProjectionPlanCompiler.cs
- CSharpCodeProvider.cs
- StorageBasedPackageProperties.cs
- DataServiceEntityAttribute.cs
- EntityCommandExecutionException.cs
- ScopeCollection.cs
- EditorPartChrome.cs
- XmlMemberMapping.cs
- _DomainName.cs
- DeviceOverridableAttribute.cs
- StrongNamePublicKeyBlob.cs
- hebrewshape.cs
- ConfigPathUtility.cs
- FileSystemInfo.cs
- Point3DCollection.cs
- FormsAuthentication.cs
- MemoryStream.cs
- Rijndael.cs
- SortDescription.cs
- ScriptReference.cs
- StrokeDescriptor.cs
- DataFormat.cs
- DataServiceQueryContinuation.cs
- CoTaskMemHandle.cs
- OdbcException.cs
- HttpInputStream.cs
- ThreadStaticAttribute.cs
- CngKeyBlobFormat.cs
- ComUdtElement.cs
- BitmapMetadataBlob.cs