Code:
/ DotNET / DotNET / 8.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
- Clause.cs
- DataSourceXmlElementAttribute.cs
- DateRangeEvent.cs
- ExpandCollapsePattern.cs
- MissingManifestResourceException.cs
- MappingSource.cs
- _SpnDictionary.cs
- TextBoxBase.cs
- Literal.cs
- RegionData.cs
- ThreadStaticAttribute.cs
- ServiceMetadataExtension.cs
- ByteRangeDownloader.cs
- BamlCollectionHolder.cs
- WebPartPersonalization.cs
- MarshalByRefObject.cs
- BaseTemplatedMobileComponentEditor.cs
- HitTestParameters3D.cs
- DataGridViewCellStyleChangedEventArgs.cs
- MemoryFailPoint.cs
- BypassElementCollection.cs
- CultureSpecificStringDictionary.cs
- BigInt.cs
- EpmSyndicationContentSerializer.cs
- ListSourceHelper.cs
- ClientConfigurationHost.cs
- OpenTypeLayout.cs
- CapabilitiesSection.cs
- ConfigXmlComment.cs
- StateMachine.cs
- RenderCapability.cs
- ExpressionBuilderCollection.cs
- SQLInt64Storage.cs
- AttachmentCollection.cs
- ReadOnlyNameValueCollection.cs
- ViewStateModeByIdAttribute.cs
- SourceFilter.cs
- XmlMtomReader.cs
- FloaterParaClient.cs
- Propagator.JoinPropagator.cs
- ComponentChangedEvent.cs
- Pointer.cs
- OperationValidationEventArgs.cs
- GridView.cs
- KeyInstance.cs
- SQLMembershipProvider.cs
- ProcessHostFactoryHelper.cs
- TransformProviderWrapper.cs
- InstanceDataCollectionCollection.cs
- FormViewCommandEventArgs.cs
- XmlNamedNodeMap.cs
- Span.cs
- NullableDoubleSumAggregationOperator.cs
- FileDetails.cs
- TextEditorLists.cs
- PictureBox.cs
- PingOptions.cs
- ChannelManagerService.cs
- Vector3D.cs
- DbConnectionPoolIdentity.cs
- TypeBuilderInstantiation.cs
- Int32KeyFrameCollection.cs
- ServiceSecurityAuditBehavior.cs
- DataError.cs
- DigestTraceRecordHelper.cs
- DataGrid.cs
- SchemaEntity.cs
- DivideByZeroException.cs
- DesignerHelpers.cs
- AdornerPresentationContext.cs
- Parser.cs
- ObjectViewListener.cs
- Normalization.cs
- Style.cs
- HTTPNotFoundHandler.cs
- ModulesEntry.cs
- CodeNamespaceImportCollection.cs
- EdmMember.cs
- DataSourceControl.cs
- documentation.cs
- SchemaEntity.cs
- DisposableCollectionWrapper.cs
- VersionedStream.cs
- DataListCommandEventArgs.cs
- EntityViewContainer.cs
- VScrollProperties.cs
- LazyInitializer.cs
- TimestampInformation.cs
- ScrollBar.cs
- GridViewHeaderRowPresenterAutomationPeer.cs
- ColorAnimationBase.cs
- ContentPlaceHolder.cs
- TraceContextRecord.cs
- ServiceManager.cs
- EntityDataSourceUtil.cs
- DragDrop.cs
- WebPartDisplayModeCancelEventArgs.cs
- RemotingServices.cs
- ColumnWidthChangedEvent.cs
- DefaultValueConverter.cs