Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / WebForms / System / Web / UI / Design / WebControls / XmlDesignerDataSourceView.cs / 1 / XmlDesignerDataSourceView.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.Design.WebControls { using System; using System.Collections; using System.Diagnostics; using System.Web.UI.WebControls; ////// XmlDesignerDataSourceView is the designer view associated with a XmlDataSourceDesigner. /// [System.Security.Permissions.SecurityPermission(System.Security.Permissions.SecurityAction.Demand, Flags = System.Security.Permissions.SecurityPermissionFlag.UnmanagedCode)] public class XmlDesignerDataSourceView : DesignerDataSourceView { private XmlDataSourceDesigner _owner; public XmlDesignerDataSourceView(XmlDataSourceDesigner owner, string viewName) : base(owner, viewName) { _owner = owner; } public override IDataSourceViewSchema Schema { get { XmlDataSource xmlDataSource = _owner.GetDesignTimeXmlDataSource(String.Empty); if (xmlDataSource == null) { return null; } string xPath = xmlDataSource.XPath; if (xPath.Length == 0) { xPath = "/node()/node()"; } IDataSourceSchema schema = new XmlDocumentSchema(xmlDataSource.GetXmlDocument(), xPath); if (schema != null) { IDataSourceViewSchema[] viewSchemas = schema.GetViews(); if ((viewSchemas != null) && (viewSchemas.Length > 0)) { return viewSchemas[0]; } } return null; } } public override IEnumerable GetDesignTimeData(int minimumRows, out bool isSampleData) { // First try to use the runtime control to load actual data IEnumerable runtimeData = _owner.GetRuntimeEnumerable(Name); if (runtimeData != null) { // Runtime data was loaded, return it isSampleData = false; return runtimeData; } // No design time data could be retrieved, show dummy data return base.GetDesignTimeData(minimumRows, out isSampleData); } } } // 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
- DecoderReplacementFallback.cs
- DataGridViewButtonCell.cs
- TableLayoutSettingsTypeConverter.cs
- XPathMessageContext.cs
- ProtocolsSection.cs
- ProtocolsConfigurationHandler.cs
- SafeProcessHandle.cs
- ContainerUIElement3D.cs
- ProfileModule.cs
- BitSet.cs
- ToolStripSeparatorRenderEventArgs.cs
- ToolStripLocationCancelEventArgs.cs
- DataSourceConverter.cs
- CollectionAdapters.cs
- COM2FontConverter.cs
- HelpEvent.cs
- EventBookmark.cs
- AsyncCompletedEventArgs.cs
- FlagsAttribute.cs
- FontDriver.cs
- OperationFormatUse.cs
- StreamGeometry.cs
- NTAccount.cs
- MobileControlsSectionHandler.cs
- UniqueIdentifierService.cs
- AsmxEndpointPickerExtension.cs
- CDSsyncETWBCLProvider.cs
- EncryptedPackage.cs
- BackoffTimeoutHelper.cs
- HtmlInputFile.cs
- XmlSchemaAttributeGroupRef.cs
- Timeline.cs
- ButtonPopupAdapter.cs
- InputLanguageEventArgs.cs
- RenderOptions.cs
- XmlSchemaCollection.cs
- XmlWriter.cs
- CompilationSection.cs
- RijndaelManaged.cs
- BounceEase.cs
- InternalConfigEventArgs.cs
- Selection.cs
- ReliableSession.cs
- RichTextBox.cs
- SymmetricKeyWrap.cs
- EditorPartChrome.cs
- WebControl.cs
- NetworkInformationException.cs
- WinEventQueueItem.cs
- WorkflowTimerService.cs
- CleanUpVirtualizedItemEventArgs.cs
- VectorCollectionConverter.cs
- ScriptResourceAttribute.cs
- LabelEditEvent.cs
- SoapObjectInfo.cs
- Serializer.cs
- NgenServicingAttributes.cs
- Control.cs
- EntityStoreSchemaFilterEntry.cs
- StorageEndPropertyMapping.cs
- MarkupExtensionParser.cs
- XamlValidatingReader.cs
- WebPageTraceListener.cs
- UnauthorizedWebPart.cs
- ViewPort3D.cs
- Animatable.cs
- PassportAuthenticationEventArgs.cs
- XmlNodeReader.cs
- CodeTypeMember.cs
- EndPoint.cs
- FormViewInsertedEventArgs.cs
- CodeAssignStatement.cs
- BaseResourcesBuildProvider.cs
- SqlInfoMessageEvent.cs
- ChildDocumentBlock.cs
- XmlSchemaRedefine.cs
- HtmlLink.cs
- ParamArrayAttribute.cs
- FormsAuthenticationCredentials.cs
- ConstructorBuilder.cs
- ColumnResult.cs
- EpmHelper.cs
- DataSourceConverter.cs
- TreeNodeConverter.cs
- SynchronizedInputProviderWrapper.cs
- XmlWriterDelegator.cs
- MsmqChannelFactory.cs
- ArglessEventHandlerProxy.cs
- StrokeNodeOperations.cs
- UriSection.cs
- HelpKeywordAttribute.cs
- BufferedGraphics.cs
- NodeFunctions.cs
- DesignerForm.cs
- ZoomPercentageConverter.cs
- TextContainerHelper.cs
- x509store.cs
- StrictModeSecurityHeaderElementInferenceEngine.cs
- MenuItemBinding.cs
- SqlFacetAttribute.cs