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
- ResourceDictionary.cs
- UIElementParagraph.cs
- _TransmitFileOverlappedAsyncResult.cs
- WorkflowOwnerAsyncResult.cs
- StylusButton.cs
- PeerApplicationLaunchInfo.cs
- NavigationProperty.cs
- GenericIdentity.cs
- BooleanKeyFrameCollection.cs
- DataControlFieldHeaderCell.cs
- TypeCollectionPropertyEditor.cs
- ScaleTransform3D.cs
- NamespaceCollection.cs
- GridViewRowCollection.cs
- printdlgexmarshaler.cs
- SpellerError.cs
- _ProxyRegBlob.cs
- ImageAttributes.cs
- HttpRawResponse.cs
- SQLBoolean.cs
- MemberDomainMap.cs
- ITextView.cs
- Soap12ProtocolReflector.cs
- SqlDataRecord.cs
- OletxTransactionFormatter.cs
- unsafenativemethodsother.cs
- InternalResources.cs
- AutomationProperties.cs
- XhtmlTextWriter.cs
- TransactionTraceIdentifier.cs
- ModulesEntry.cs
- SHA384CryptoServiceProvider.cs
- WindowsNonControl.cs
- FontWeights.cs
- ExpressionPrefixAttribute.cs
- SolidColorBrush.cs
- MissingMethodException.cs
- MetafileHeader.cs
- HttpMethodConstraint.cs
- SqlBuffer.cs
- NamespaceMapping.cs
- WebPartManagerInternals.cs
- PropertySourceInfo.cs
- CatalogZoneBase.cs
- Trace.cs
- VirtualPath.cs
- SpecialFolderEnumConverter.cs
- FamilyMap.cs
- TextRangeEdit.cs
- HttpStaticObjectsCollectionWrapper.cs
- Int32AnimationBase.cs
- SoapExtensionStream.cs
- Base64Stream.cs
- DescendentsWalkerBase.cs
- PlaceHolder.cs
- QilReplaceVisitor.cs
- RemoteArgument.cs
- LazyTextWriterCreator.cs
- Viewport2DVisual3D.cs
- MediaScriptCommandRoutedEventArgs.cs
- FacetDescriptionElement.cs
- XslCompiledTransform.cs
- VectorAnimation.cs
- TextBoxAutoCompleteSourceConverter.cs
- MultiBindingExpression.cs
- XmlSchemaSimpleTypeRestriction.cs
- Column.cs
- Registry.cs
- ObjectReaderCompiler.cs
- InfoCardRequestException.cs
- ErrorsHelper.cs
- Vector.cs
- CssTextWriter.cs
- SessionMode.cs
- RijndaelManagedTransform.cs
- WindowManager.cs
- WindowAutomationPeer.cs
- MediaSystem.cs
- TraceRecord.cs
- DataGridItemAttachedStorage.cs
- DataTableReaderListener.cs
- JavaScriptSerializer.cs
- BindingContext.cs
- NavigationWindow.cs
- HttpValueCollection.cs
- EndpointIdentityConverter.cs
- _Rfc2616CacheValidators.cs
- RowsCopiedEventArgs.cs
- HtmlInputImage.cs
- ProviderException.cs
- KeyGestureConverter.cs
- HttpCachePolicyElement.cs
- SqlComparer.cs
- LinearGradientBrush.cs
- IQueryable.cs
- DocumentEventArgs.cs
- RequestDescription.cs
- SecurityUtils.cs
- CounterCreationData.cs
- shaperfactory.cs