Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / WebForms / System / Web / UI / Design / ControlParser.cs / 1 / ControlParser.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.Design { using System; using System.ComponentModel; using System.ComponentModel.Design; using System.Diagnostics; using System.Reflection; using System.Text; using System.Web.UI; ////// /// [System.Security.Permissions.SecurityPermission(System.Security.Permissions.SecurityAction.Demand, Flags=System.Security.Permissions.SecurityPermissionFlag.UnmanagedCode)] public sealed class ControlParser { private ControlParser() { } ///[To be supplied.] ////// /// public static Control ParseControl(IDesignerHost designerHost, string controlText) { if (designerHost == null) { throw new ArgumentNullException("designerHost"); } if ((controlText == null) || (controlText.Length == 0)) { throw new ArgumentNullException("controlText"); } return ControlSerializer.DeserializeControl(controlText, designerHost); } ///[To be supplied.] ////// /// internal static Control ParseControl(IDesignerHost designerHost, string controlText, bool applyTheme) { if (designerHost == null) { throw new ArgumentNullException("designerHost"); } if ((controlText == null) || (controlText.Length == 0)) { throw new ArgumentNullException("controlText"); } return ControlSerializer.DeserializeControlInternal(controlText, designerHost, applyTheme); } ///[To be supplied.] ////// /// public static Control ParseControl(IDesignerHost designerHost, string controlText, string directives) { if (designerHost == null) { throw new ArgumentNullException("designerHost"); } if ((controlText == null) || (controlText.Length == 0)) { throw new ArgumentNullException("controlText"); } if ((directives != null) && (directives.Length != 0)) { controlText = directives + controlText; } return ControlSerializer.DeserializeControl(controlText, designerHost); } public static Control[] ParseControls(IDesignerHost designerHost, string controlText) { if (designerHost == null) { throw new ArgumentNullException("designerHost"); } if ((controlText == null) || (controlText.Length == 0)) { throw new ArgumentNullException("controlText"); } return ControlSerializer.DeserializeControls(controlText, designerHost); } ///[To be supplied.] ////// /// public static ITemplate ParseTemplate(IDesignerHost designerHost, string templateText) { if (designerHost == null) { throw new ArgumentNullException("designerHost"); } return ControlSerializer.DeserializeTemplate(templateText, designerHost); } ///[To be supplied.] ////// /// public static ITemplate ParseTemplate(IDesignerHost designerHost, string templateText, string directives) { if (designerHost == null) { throw new ArgumentNullException("designerHost"); } return ControlSerializer.DeserializeTemplate(templateText, designerHost); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- BinaryObjectWriter.cs
- _NestedMultipleAsyncResult.cs
- SoapTransportImporter.cs
- TextOptionsInternal.cs
- ColorAnimationBase.cs
- ItemType.cs
- MouseEvent.cs
- ColorTransform.cs
- EntityDataSourceSelectingEventArgs.cs
- ResourcesChangeInfo.cs
- OperatingSystem.cs
- FloaterParagraph.cs
- _NegotiateClient.cs
- EntityDataSourceSelectedEventArgs.cs
- SqlBuffer.cs
- MsmqInputChannelListenerBase.cs
- ToolStripSystemRenderer.cs
- ViewDesigner.cs
- DesignerProperties.cs
- MergeFilterQuery.cs
- JsonEnumDataContract.cs
- ProviderBase.cs
- DefaultTextStore.cs
- SendingRequestEventArgs.cs
- StylusOverProperty.cs
- SqlXml.cs
- ListDictionaryInternal.cs
- Parser.cs
- SqlErrorCollection.cs
- CellQuery.cs
- StateDesigner.cs
- PrePostDescendentsWalker.cs
- ping.cs
- FragmentQueryProcessor.cs
- StreamFormatter.cs
- __FastResourceComparer.cs
- PrinterResolution.cs
- XmlnsDefinitionAttribute.cs
- StorageInfo.cs
- DataGridViewBand.cs
- WebSysDescriptionAttribute.cs
- CompositeActivityCodeGenerator.cs
- DecimalFormatter.cs
- EntityClientCacheKey.cs
- OperandQuery.cs
- FontNameConverter.cs
- RuntimeConfig.cs
- NativeDirectoryServicesQueryAPIs.cs
- NativeMsmqMessage.cs
- MeshGeometry3D.cs
- XmlAnyElementAttributes.cs
- UpdatePanel.cs
- DocumentViewerBase.cs
- HtmlInputImage.cs
- AppDomainInstanceProvider.cs
- OutputCacheModule.cs
- ToolStripTextBox.cs
- XmlSchemaType.cs
- SpStreamWrapper.cs
- EventLogQuery.cs
- InheritanceAttribute.cs
- DataPagerFieldItem.cs
- path.cs
- X509CertificateTokenFactoryCredential.cs
- Converter.cs
- TypeExtensions.cs
- RangeValueProviderWrapper.cs
- SelectionUIHandler.cs
- XhtmlConformanceSection.cs
- TraceSource.cs
- XmlSchemas.cs
- TextDecorationCollectionConverter.cs
- ResourceDescriptionAttribute.cs
- MembershipSection.cs
- ToolStripItemEventArgs.cs
- MULTI_QI.cs
- MethodRental.cs
- EndpointIdentity.cs
- CodeTypeParameterCollection.cs
- HtmlElement.cs
- EntityContainerEmitter.cs
- LogicalTreeHelper.cs
- ProtocolState.cs
- StateMachineHelpers.cs
- FixedFlowMap.cs
- FontStretches.cs
- _DynamicWinsockMethods.cs
- DataExpression.cs
- Setter.cs
- DbConnectionPoolOptions.cs
- DocumentCollection.cs
- COM2ColorConverter.cs
- TextRangeProviderWrapper.cs
- WindowsListViewItem.cs
- WebBrowser.cs
- DataTableReaderListener.cs
- XmlIterators.cs
- ToolStripOverflow.cs
- SelectedDatesCollection.cs
- FileDialogCustomPlace.cs