Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Extensions / UI / WebControls / QueryExtender.cs / 1305376 / QueryExtender.cs
#if ORYX_VNEXT namespace Microsoft.Web.Data.UI.WebControls { using System.Web; using Microsoft.Web.Data.UI.WebControls.Expressions; #else namespace System.Web.UI.WebControls { using System.Web.UI.WebControls.Expressions; #endif using System; using System.ComponentModel; using System.Drawing; using System.Diagnostics.CodeAnalysis; using System.Globalization; using System.Security.Permissions; using System.Web.UI; using System.Web.Resources; [TargetControlType(typeof(IQueryableDataSource))] [NonVisualControl()] [DefaultProperty("TargetControlID")] #if !ORYX_VNEXT [ToolboxBitmap(typeof(QueryExtender), "QueryExtender.bmp")] [Designer("System.Web.UI.Design.QueryExtenderDesigner, " + AssemblyRef.SystemWebExtensionsDesign)] #endif [ParseChildren(true, "Expressions")] [PersistChildren(false)] public class QueryExtender : Control { private QueryExpression _query; private string _targetControlID; private IQueryableDataSource _dataSource; public QueryExtender() { } internal QueryExtender(IQueryableDataSource dataSource) { _dataSource = dataSource; } [Browsable(false)] [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)] public virtual IQueryableDataSource DataSource { get { if (_dataSource == null) { if (String.IsNullOrEmpty(TargetControlID)) { throw new InvalidOperationException(AtlasWeb.DataSourceControlExtender_TargetControlIDMustBeSpecified); } #if ORYX_VNEXT _dataSource = DataSourceExtensions.FindControl(this, TargetControlID) as IQueryableDataSource; #else _dataSource = DataBoundControlHelper.FindControl(this, TargetControlID) as IQueryableDataSource; #endif // if (_dataSource == null) { throw new InvalidOperationException( String.Format(CultureInfo.CurrentCulture, AtlasWeb.QueryExtender_DataSourceMustBeIQueryableDataSource, TargetControlID)); } } return _dataSource; } } [ Category("Behavior"), ResourceDescription("QueryExtender_Expressions"), PersistenceMode(PersistenceMode.InnerDefaultProperty), ] public DataSourceExpressionCollection Expressions { get { return Query.Expressions; } } [ Category("Behavior"), DefaultValue(""), IDReferenceProperty, ResourceDescription("ExtenderControl_TargetControlID"), SuppressMessage("Microsoft.Naming", "CA1709:IdentifiersShouldBeCasedCorrectly", MessageId = "ID"), ] public virtual string TargetControlID { get { return _targetControlID ?? String.Empty; } set { if (_targetControlID != value) { _dataSource = null; _targetControlID = value; } } } private QueryExpression Query { get { if (_query == null) { _query = new QueryExpression(); } return _query; } } [SuppressMessage("Microsoft.Security", "CA2109:ReviewVisibleEventHandlers", MessageId = "0#")] #if ORYX_VNEXT protected override void OnInit(EventArgs e) { #else protected internal override void OnInit(EventArgs e) { #endif if (!DesignMode) { DataSource.QueryCreated += new EventHandler(OnDataSourceQueryCreated); // Initialize the Query Query.Initialize(this, Context, DataSource); } base.OnInit(e); } private void OnDataSourceQueryCreated(object sender, QueryCreatedEventArgs e) { e.Query = Query.GetQueryable(e.Query); } protected override object SaveViewState() { Pair p = new Pair(); p.First = base.SaveViewState(); p.Second = _query != null ? ((IStateManager)_query.Expressions).SaveViewState() : null; return p; } protected override void LoadViewState(object savedState) { Pair p = (Pair)savedState; base.LoadViewState(p.First); if (p.Second != null) { ((IStateManager)Query.Expressions).LoadViewState(p.Second); } } protected override void TrackViewState() { base.TrackViewState(); if (_query != null) { ((IStateManager)_query.Expressions).TrackViewState(); } } } } // 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
- DBConcurrencyException.cs
- ConnectionOrientedTransportChannelListener.cs
- PriorityItem.cs
- PeerFlooder.cs
- DetailsViewRow.cs
- _BufferOffsetSize.cs
- LoginAutoFormat.cs
- XmlSchemaException.cs
- Buffer.cs
- SafeFileMapViewHandle.cs
- MouseEvent.cs
- MetabaseServerConfig.cs
- ConcurrencyMode.cs
- FileLevelControlBuilderAttribute.cs
- ActivityExecutor.cs
- GeometryCollection.cs
- PathSegmentCollection.cs
- ThicknessConverter.cs
- IndentTextWriter.cs
- TriggerCollection.cs
- SymLanguageType.cs
- ComponentManagerBroker.cs
- MimeMapping.cs
- PointCollection.cs
- CapacityStreamGeometryContext.cs
- ToolStripManager.cs
- PropertyMetadata.cs
- Int32CollectionValueSerializer.cs
- isolationinterop.cs
- VisualStyleTypesAndProperties.cs
- mda.cs
- CompiledQuery.cs
- DataGridViewCellStyle.cs
- FontStyles.cs
- AssociationProvider.cs
- PaperSize.cs
- BaseAsyncResult.cs
- BindingList.cs
- SqlDataSourceFilteringEventArgs.cs
- TextEditorSpelling.cs
- OrderPreservingSpoolingTask.cs
- SystemTcpStatistics.cs
- ComplexLine.cs
- GuidConverter.cs
- ControlValuePropertyAttribute.cs
- _BaseOverlappedAsyncResult.cs
- FormViewDeleteEventArgs.cs
- EditorPartDesigner.cs
- DirtyTextRange.cs
- CompilationRelaxations.cs
- SiteMapSection.cs
- DelegatingMessage.cs
- ScriptingProfileServiceSection.cs
- FileRecordSequenceCompletedAsyncResult.cs
- HttpConfigurationContext.cs
- OciLobLocator.cs
- SeekStoryboard.cs
- AppDomainProtocolHandler.cs
- Fonts.cs
- ProcessStartInfo.cs
- Dispatcher.cs
- mda.cs
- ProgressiveCrcCalculatingStream.cs
- IdentitySection.cs
- ToolStripDropDown.cs
- BatchParser.cs
- Stacktrace.cs
- CLRBindingWorker.cs
- HwndHostAutomationPeer.cs
- InputBinder.cs
- SourceFileInfo.cs
- CharStorage.cs
- streamingZipPartStream.cs
- RemotingSurrogateSelector.cs
- DnsEndPoint.cs
- WebBrowserPermission.cs
- AssociationTypeEmitter.cs
- ValueHandle.cs
- WinEventQueueItem.cs
- Formatter.cs
- BooleanExpr.cs
- ReferenceService.cs
- BufferBuilder.cs
- TagPrefixAttribute.cs
- PrtTicket_Public_Simple.cs
- TypeContext.cs
- TypedElement.cs
- Window.cs
- WebPartMovingEventArgs.cs
- TailCallAnalyzer.cs
- ValueType.cs
- DbFunctionCommandTree.cs
- ReservationNotFoundException.cs
- GeneralTransform3DTo2D.cs
- SecurityHeader.cs
- FunctionImportElement.cs
- LiteralControl.cs
- SamlConditions.cs
- ZipIOZip64EndOfCentralDirectoryLocatorBlock.cs
- ProtocolElement.cs