Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / HierarchicalDataSourceControl.cs / 1305376 / HierarchicalDataSourceControl.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System.ComponentModel; using System.Security.Permissions; [ Bindable(false), ControlBuilder(typeof(DataSourceControlBuilder)), Designer("System.Web.UI.Design.HierarchicalDataSourceDesigner, " + AssemblyRef.SystemDesign), NonVisualControl() ] public abstract class HierarchicalDataSourceControl : Control, IHierarchicalDataSource { private static readonly object EventDataSourceChanged = new object(); [ Browsable(false), EditorBrowsable(EditorBrowsableState.Never), ] public override string ClientID { get { return base.ClientID; } } [ Browsable(false), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden), EditorBrowsable(EditorBrowsableState.Never) ] public override ClientIDMode ClientIDMode { get { return base.ClientIDMode; } set { throw new NotSupportedException(); } } [ EditorBrowsable(EditorBrowsableState.Never), ] public override ControlCollection Controls { get { return base.Controls; } } [ Browsable(false), DefaultValue(false), EditorBrowsable(EditorBrowsableState.Never), ] public override bool EnableTheming { get { return false; } set { throw new NotSupportedException(SR.GetString(SR.NoThemingSupport, this.GetType().Name)); } } [ Browsable(false), DefaultValue(""), EditorBrowsable(EditorBrowsableState.Never), ] public override string SkinID { get { return String.Empty; } set { throw new NotSupportedException(SR.GetString(SR.NoThemingSupport, this.GetType().Name)); } } ////// Gets or sets a value that indicates whether a control should be rendered on /// the page. /// [ Browsable(false), DefaultValue(false), EditorBrowsable(EditorBrowsableState.Never), ] public override bool Visible { get { return false; } set { throw new NotSupportedException(SR.GetString(SR.ControlNonVisual, this.GetType().Name)); } } [ EditorBrowsable(EditorBrowsableState.Never), ] public override void ApplyStyleSheetSkin(Page page) { base.ApplyStyleSheetSkin(page); } ////// Overidden to prevent child controls from being added to this control. /// protected override ControlCollection CreateControlCollection() { return new EmptyControlCollection(this); } [ EditorBrowsable(EditorBrowsableState.Never), ] public override Control FindControl(string id) { return base.FindControl(id); } ////// [ EditorBrowsable(EditorBrowsableState.Never), ] public override void Focus() { throw new NotSupportedException(SR.GetString(SR.NoFocusSupport, this.GetType().Name)); } protected abstract HierarchicalDataSourceView GetHierarchicalView(string viewPath); [ EditorBrowsable(EditorBrowsableState.Never), ] public override bool HasControls() { return base.HasControls(); } protected virtual void OnDataSourceChanged(EventArgs e) { EventHandler onDataSourceChangedHandler = (EventHandler)Events[EventDataSourceChanged]; if (onDataSourceChangedHandler != null) onDataSourceChangedHandler(this, e); } [ EditorBrowsable(EditorBrowsableState.Never), ] public override void RenderControl(HtmlTextWriter writer) { base.RenderControl(writer); } #region Implementation of IHierarchicalDataSource ////// Raised when the underlying data source has changed. The /// change may be due to a change in the control's properties, /// or a change in the data due to an edit action performed by /// the DataSourceControl. /// event EventHandler IHierarchicalDataSource.DataSourceChanged { add { Events.AddHandler(EventDataSourceChanged, value); } remove { Events.RemoveHandler(EventDataSourceChanged, value); } } ///HierarchicalDataSourceView IHierarchicalDataSource.GetHierarchicalView(string viewPath) { return GetHierarchicalView(viewPath); } #endregion } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System.ComponentModel; using System.Security.Permissions; [ Bindable(false), ControlBuilder(typeof(DataSourceControlBuilder)), Designer("System.Web.UI.Design.HierarchicalDataSourceDesigner, " + AssemblyRef.SystemDesign), NonVisualControl() ] public abstract class HierarchicalDataSourceControl : Control, IHierarchicalDataSource { private static readonly object EventDataSourceChanged = new object(); [ Browsable(false), EditorBrowsable(EditorBrowsableState.Never), ] public override string ClientID { get { return base.ClientID; } } [ Browsable(false), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden), EditorBrowsable(EditorBrowsableState.Never) ] public override ClientIDMode ClientIDMode { get { return base.ClientIDMode; } set { throw new NotSupportedException(); } } [ EditorBrowsable(EditorBrowsableState.Never), ] public override ControlCollection Controls { get { return base.Controls; } } [ Browsable(false), DefaultValue(false), EditorBrowsable(EditorBrowsableState.Never), ] public override bool EnableTheming { get { return false; } set { throw new NotSupportedException(SR.GetString(SR.NoThemingSupport, this.GetType().Name)); } } [ Browsable(false), DefaultValue(""), EditorBrowsable(EditorBrowsableState.Never), ] public override string SkinID { get { return String.Empty; } set { throw new NotSupportedException(SR.GetString(SR.NoThemingSupport, this.GetType().Name)); } } ////// Gets or sets a value that indicates whether a control should be rendered on /// the page. /// [ Browsable(false), DefaultValue(false), EditorBrowsable(EditorBrowsableState.Never), ] public override bool Visible { get { return false; } set { throw new NotSupportedException(SR.GetString(SR.ControlNonVisual, this.GetType().Name)); } } [ EditorBrowsable(EditorBrowsableState.Never), ] public override void ApplyStyleSheetSkin(Page page) { base.ApplyStyleSheetSkin(page); } ////// Overidden to prevent child controls from being added to this control. /// protected override ControlCollection CreateControlCollection() { return new EmptyControlCollection(this); } [ EditorBrowsable(EditorBrowsableState.Never), ] public override Control FindControl(string id) { return base.FindControl(id); } ////// [ EditorBrowsable(EditorBrowsableState.Never), ] public override void Focus() { throw new NotSupportedException(SR.GetString(SR.NoFocusSupport, this.GetType().Name)); } protected abstract HierarchicalDataSourceView GetHierarchicalView(string viewPath); [ EditorBrowsable(EditorBrowsableState.Never), ] public override bool HasControls() { return base.HasControls(); } protected virtual void OnDataSourceChanged(EventArgs e) { EventHandler onDataSourceChangedHandler = (EventHandler)Events[EventDataSourceChanged]; if (onDataSourceChangedHandler != null) onDataSourceChangedHandler(this, e); } [ EditorBrowsable(EditorBrowsableState.Never), ] public override void RenderControl(HtmlTextWriter writer) { base.RenderControl(writer); } #region Implementation of IHierarchicalDataSource ////// Raised when the underlying data source has changed. The /// change may be due to a change in the control's properties, /// or a change in the data due to an edit action performed by /// the DataSourceControl. /// event EventHandler IHierarchicalDataSource.DataSourceChanged { add { Events.AddHandler(EventDataSourceChanged, value); } remove { Events.RemoveHandler(EventDataSourceChanged, value); } } ///HierarchicalDataSourceView IHierarchicalDataSource.GetHierarchicalView(string viewPath) { return GetHierarchicalView(viewPath); } #endregion } } // 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
- HuffCodec.cs
- Constants.cs
- XmlSchemaSet.cs
- MessagePartDescription.cs
- IndexerNameAttribute.cs
- EventMap.cs
- SqlDataSourceEnumerator.cs
- DataTableClearEvent.cs
- DataGridViewRowsAddedEventArgs.cs
- TextEditorMouse.cs
- ProfileService.cs
- ControllableStoryboardAction.cs
- MimeMapping.cs
- XmlResolver.cs
- UnmanagedBitmapWrapper.cs
- RedistVersionInfo.cs
- CollaborationHelperFunctions.cs
- DecoratedNameAttribute.cs
- XmlUtil.cs
- Int64AnimationUsingKeyFrames.cs
- SrgsNameValueTag.cs
- PreservationFileReader.cs
- ProcessInputEventArgs.cs
- TableDetailsRow.cs
- StringWriter.cs
- WorkflowCreationContext.cs
- ListView.cs
- PageTheme.cs
- RuntimeCompatibilityAttribute.cs
- EdmFunctions.cs
- EntityWithChangeTrackerStrategy.cs
- PointValueSerializer.cs
- Util.cs
- BitmapSourceSafeMILHandle.cs
- RegexParser.cs
- PageVisual.cs
- StackOverflowException.cs
- PermissionSetEnumerator.cs
- HttpWebRequest.cs
- RadioButtonAutomationPeer.cs
- OutputWindow.cs
- Logging.cs
- AsyncResult.cs
- FormClosedEvent.cs
- TrustManagerMoreInformation.cs
- MsmqIntegrationSecurity.cs
- DesignerUtility.cs
- HttpRequestTraceRecord.cs
- DesignerDataTableBase.cs
- TextServicesCompartment.cs
- FolderLevelBuildProvider.cs
- AnimatedTypeHelpers.cs
- SafeSystemMetrics.cs
- HtmlTableCell.cs
- PersonalizationStateInfo.cs
- RootBrowserWindow.cs
- EntityContainer.cs
- WebPartManager.cs
- CellCreator.cs
- TextRangeAdaptor.cs
- SerializableAttribute.cs
- EventBookmark.cs
- CharConverter.cs
- RouteValueExpressionBuilder.cs
- xmlglyphRunInfo.cs
- ApplyTemplatesAction.cs
- ActivitySurrogate.cs
- NameValuePair.cs
- SafeRightsManagementQueryHandle.cs
- ParsedAttributeCollection.cs
- TreeView.cs
- ConfigXmlReader.cs
- DataServiceHost.cs
- TextMarkerSource.cs
- PathFigure.cs
- TransformProviderWrapper.cs
- SelectionRangeConverter.cs
- EmptyElement.cs
- ListViewGroupCollectionEditor.cs
- DocumentPageHost.cs
- FixedPageStructure.cs
- Util.cs
- ClaimComparer.cs
- MobileUITypeEditor.cs
- EventsTab.cs
- SpeechSynthesizer.cs
- EntryWrittenEventArgs.cs
- ContractInstanceProvider.cs
- SqlSelectStatement.cs
- EdmEntityTypeAttribute.cs
- TextServicesPropertyRanges.cs
- XPathDocumentNavigator.cs
- DataGridViewTextBoxEditingControl.cs
- CryptoHandle.cs
- CriticalFinalizerObject.cs
- DataObjectCopyingEventArgs.cs
- Resources.Designer.cs
- WindowsFormsHostAutomationPeer.cs
- ConfigurationStrings.cs
- CodeDOMProvider.cs