Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / xsp / System / Web / UI / WebControls / ReadOnlyDataSourceView.cs / 1 / ReadOnlyDataSourceView.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.Collections; using System.Web.UI; using System.Web.Util; ////// This class is used by ReadOnlyDataSource to represent an individual /// view of a generic data source. /// internal sealed class ReadOnlyDataSourceView : DataSourceView { private IEnumerable _dataSource; public ReadOnlyDataSourceView(ReadOnlyDataSource owner, string name, IEnumerable dataSource) : base(owner, name) { _dataSource = dataSource; } protected internal override IEnumerable ExecuteSelect(DataSourceSelectArguments arguments) { arguments.RaiseUnsupportedCapabilitiesError(this); return _dataSource; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.Collections; using System.Web.UI; using System.Web.Util; ////// This class is used by ReadOnlyDataSource to represent an individual /// view of a generic data source. /// internal sealed class ReadOnlyDataSourceView : DataSourceView { private IEnumerable _dataSource; public ReadOnlyDataSourceView(ReadOnlyDataSource owner, string name, IEnumerable dataSource) : base(owner, name) { _dataSource = dataSource; } protected internal override IEnumerable ExecuteSelect(DataSourceSelectArguments arguments) { arguments.RaiseUnsupportedCapabilitiesError(this); return _dataSource; } } } // 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
- XmlSchemaParticle.cs
- FocusWithinProperty.cs
- BrowsableAttribute.cs
- SqlError.cs
- CodeAssignStatement.cs
- _CookieModule.cs
- DataRecordObjectView.cs
- WindowsTokenRoleProvider.cs
- Internal.cs
- TextBlockAutomationPeer.cs
- ButtonField.cs
- tibetanshape.cs
- IPEndPoint.cs
- PermissionSetEnumerator.cs
- ObjectDataSourceDisposingEventArgs.cs
- CodeIdentifiers.cs
- ItemCheckEvent.cs
- LocatorPartList.cs
- AsyncOperation.cs
- RSAPKCS1KeyExchangeFormatter.cs
- PageCache.cs
- ContextProperty.cs
- DocumentReference.cs
- DataControlFieldHeaderCell.cs
- TypeLibConverter.cs
- BinaryCommonClasses.cs
- EventLogEntry.cs
- Number.cs
- InlinedLocationReference.cs
- PerformanceCounterCategory.cs
- SqlCommand.cs
- BamlWriter.cs
- EntityDataSourceQueryBuilder.cs
- NativeActivityAbortContext.cs
- ObjectListCommandCollection.cs
- COM2ColorConverter.cs
- ComEventsInfo.cs
- Axis.cs
- HtmlFormParameterReader.cs
- AppliedDeviceFiltersEditor.cs
- basevalidator.cs
- ActivityWithResultConverter.cs
- ActivityCompletionCallbackWrapper.cs
- Section.cs
- LazyTextWriterCreator.cs
- DialogWindow.cs
- DbConnectionFactory.cs
- _AuthenticationState.cs
- WindowShowOrOpenTracker.cs
- CapabilitiesPattern.cs
- GridViewHeaderRowPresenter.cs
- MarshalByRefObject.cs
- ResourceCategoryAttribute.cs
- SolidColorBrush.cs
- ExpressionBuilderContext.cs
- ReferentialConstraint.cs
- XmlSchemaNotation.cs
- SQLStringStorage.cs
- SelectionItemPattern.cs
- UIAgentCrashedException.cs
- WindowsFormsHost.cs
- XmlRawWriterWrapper.cs
- QilGenerator.cs
- manifestimages.cs
- QilInvokeLateBound.cs
- LinkLabelLinkClickedEvent.cs
- CallSite.cs
- OleDbDataAdapter.cs
- CaseInsensitiveHashCodeProvider.cs
- CalendarKeyboardHelper.cs
- ReadOnlyAttribute.cs
- CompilerResults.cs
- ErrorEventArgs.cs
- counter.cs
- XPathDocumentIterator.cs
- WebSysDescriptionAttribute.cs
- TemplateKeyConverter.cs
- RuntimeArgumentHandle.cs
- InternalSafeNativeMethods.cs
- GatewayDefinition.cs
- ManualResetEvent.cs
- TimeSpanSecondsOrInfiniteConverter.cs
- StorageComplexTypeMapping.cs
- MetadataArtifactLoaderXmlReaderWrapper.cs
- GetPageCompletedEventArgs.cs
- StandardBindingCollectionElement.cs
- StylusSystemGestureEventArgs.cs
- XmlMemberMapping.cs
- LineServices.cs
- BamlBinaryReader.cs
- PassportAuthenticationEventArgs.cs
- WizardPanel.cs
- path.cs
- ServicePointManagerElement.cs
- AdapterDictionary.cs
- ScrollBar.cs
- ToolStripRenderEventArgs.cs
- HtmlTextArea.cs
- DesignerRegion.cs
- SingleSelectRootGridEntry.cs