Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / MIT / System / Web / UI / MobileControls / DesignerDeviceConfig.cs / 1305376 / DesignerDeviceConfig.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.ComponentModel; using System.Web.UI.MobileControls.Adapters; using System.Web.Util; namespace System.Web.UI.MobileControls { // Data structure for a specialized version of IndividualDeviceConfig, // used in design mode. [Obsolete("The System.Web.Mobile.dll assembly has been deprecated and should no longer be used. For information about how to develop ASP.NET mobile applications, see http://go.microsoft.com/fwlink/?LinkId=157231.")] class DesignerDeviceConfig : IndividualDeviceConfig { internal DesignerDeviceConfig(String pageAdapterType) : base(Type.GetType (pageAdapterType)) { } internal override IControlAdapter NewControlAdapter(Type originalControlType) { IControlAdapter adapter; IWebObjectFactory adapterFactory = LookupControl(originalControlType); if (adapterFactory != null) { adapter = (IControlAdapter) adapterFactory.CreateInstance(); } else { DesignerAdapterAttribute da; da = (DesignerAdapterAttribute) TypeDescriptor.GetAttributes(originalControlType) [typeof(DesignerAdapterAttribute)]; if (da == null) { return new EmptyControlAdapter(); } Type adapterType = Type.GetType(da.TypeName); if (adapterType == null) { return new EmptyControlAdapter(); } adapter = Activator.CreateInstance(adapterType) as IControlAdapter; } if (adapter == null) { adapter = new EmptyControlAdapter(); } return adapter; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.ComponentModel; using System.Web.UI.MobileControls.Adapters; using System.Web.Util; namespace System.Web.UI.MobileControls { // Data structure for a specialized version of IndividualDeviceConfig, // used in design mode. [Obsolete("The System.Web.Mobile.dll assembly has been deprecated and should no longer be used. For information about how to develop ASP.NET mobile applications, see http://go.microsoft.com/fwlink/?LinkId=157231.")] class DesignerDeviceConfig : IndividualDeviceConfig { internal DesignerDeviceConfig(String pageAdapterType) : base(Type.GetType (pageAdapterType)) { } internal override IControlAdapter NewControlAdapter(Type originalControlType) { IControlAdapter adapter; IWebObjectFactory adapterFactory = LookupControl(originalControlType); if (adapterFactory != null) { adapter = (IControlAdapter) adapterFactory.CreateInstance(); } else { DesignerAdapterAttribute da; da = (DesignerAdapterAttribute) TypeDescriptor.GetAttributes(originalControlType) [typeof(DesignerAdapterAttribute)]; if (da == null) { return new EmptyControlAdapter(); } Type adapterType = Type.GetType(da.TypeName); if (adapterType == null) { return new EmptyControlAdapter(); } adapter = Activator.CreateInstance(adapterType) as IControlAdapter; } if (adapter == null) { adapter = new EmptyControlAdapter(); } return adapter; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- RuntimeCompatibilityAttribute.cs
- DataException.cs
- ResourceContainer.cs
- ClickablePoint.cs
- SamlAssertion.cs
- PackagePartCollection.cs
- DocumentsTrace.cs
- RequestCachePolicy.cs
- TrackingQueryElement.cs
- InkCanvasAutomationPeer.cs
- Window.cs
- QueryIntervalOp.cs
- DesignerCategoryAttribute.cs
- ApplicationFileCodeDomTreeGenerator.cs
- DependencyObject.cs
- SQlBooleanStorage.cs
- DbUpdateCommandTree.cs
- XamlFigureLengthSerializer.cs
- ClientSession.cs
- _FixedSizeReader.cs
- Size.cs
- hresults.cs
- InputGestureCollection.cs
- BuilderElements.cs
- FixedSOMTableRow.cs
- StaticDataManager.cs
- bidPrivateBase.cs
- MultiPartWriter.cs
- ListViewTableCell.cs
- SerializerDescriptor.cs
- AuthenticationModulesSection.cs
- DataIdProcessor.cs
- SiteMapDesignerDataSourceView.cs
- OleDbException.cs
- NamespaceListProperty.cs
- BlurEffect.cs
- ExecutionContext.cs
- ConfigurationPropertyCollection.cs
- GenericUriParser.cs
- XmlC14NWriter.cs
- DefaultDiscoveryServiceExtension.cs
- RoutedEventHandlerInfo.cs
- MarkupExtensionParser.cs
- ViewCellRelation.cs
- BuilderElements.cs
- IpcChannelHelper.cs
- DependencyPropertyConverter.cs
- LookupNode.cs
- TrayIconDesigner.cs
- ContentElement.cs
- EventLogPermissionHolder.cs
- CallContext.cs
- DataGridViewTopLeftHeaderCell.cs
- ImageClickEventArgs.cs
- StreamSecurityUpgradeInitiatorBase.cs
- ExtensibleClassFactory.cs
- FunctionQuery.cs
- DataBindingExpressionBuilder.cs
- odbcmetadatafactory.cs
- MediaElement.cs
- ObjectQueryExecutionPlan.cs
- Baml2006ReaderFrame.cs
- SqlVersion.cs
- DesignerLinkAdapter.cs
- Encoder.cs
- SecurityAttributeGenerationHelper.cs
- RankException.cs
- coordinator.cs
- ConfigXmlDocument.cs
- PassportAuthenticationEventArgs.cs
- ServiceElement.cs
- TableRowGroup.cs
- ClosureBinding.cs
- AnyReturnReader.cs
- PagesChangedEventArgs.cs
- WebPartConnectionsConfigureVerb.cs
- CreatingCookieEventArgs.cs
- ColorConvertedBitmap.cs
- MonthCalendar.cs
- ListViewInsertionMark.cs
- PathNode.cs
- XmlRawWriter.cs
- WindowsTreeView.cs
- SchemaObjectWriter.cs
- PolyQuadraticBezierSegment.cs
- Encoder.cs
- FactoryGenerator.cs
- DataControlCommands.cs
- CodeLabeledStatement.cs
- Bidi.cs
- CallId.cs
- EntitySqlQueryState.cs
- WindowsUpDown.cs
- TableLayoutCellPaintEventArgs.cs
- GroupDescription.cs
- FormParameter.cs
- ColorIndependentAnimationStorage.cs
- MemoryRecordBuffer.cs
- WebReferencesBuildProvider.cs
- ResourceExpressionBuilder.cs