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
- MenuRenderer.cs
- DataGridViewBand.cs
- SecurityAccessDeniedException.cs
- filewebrequest.cs
- Calendar.cs
- WebBrowserPermission.cs
- AsyncCallback.cs
- VersionUtil.cs
- CultureInfoConverter.cs
- FormsAuthenticationEventArgs.cs
- IPEndPoint.cs
- Convert.cs
- DataGridTextBoxColumn.cs
- Document.cs
- ComponentCommands.cs
- DocumentPageTextView.cs
- RSAProtectedConfigurationProvider.cs
- MenuItemStyleCollection.cs
- IImplicitResourceProvider.cs
- ObjectIDGenerator.cs
- WhitespaceRuleLookup.cs
- Convert.cs
- GridViewColumnCollectionChangedEventArgs.cs
- InvalidOleVariantTypeException.cs
- FillRuleValidation.cs
- WebException.cs
- Transform3DCollection.cs
- OrderedDictionaryStateHelper.cs
- DataPointer.cs
- ToggleProviderWrapper.cs
- ThreadStaticAttribute.cs
- WindowsPrincipal.cs
- DataGrid.cs
- BindingNavigatorDesigner.cs
- XPathDocumentIterator.cs
- UxThemeWrapper.cs
- RunWorkerCompletedEventArgs.cs
- CustomCategoryAttribute.cs
- WpfWebRequestHelper.cs
- RadioButtonList.cs
- ConstructorNeedsTagAttribute.cs
- EndOfStreamException.cs
- UnsafeNativeMethods.cs
- XPathNavigatorKeyComparer.cs
- CopyAction.cs
- IArgumentProvider.cs
- WindowShowOrOpenTracker.cs
- InputElement.cs
- XmlSerializerFactory.cs
- ApplyHostConfigurationBehavior.cs
- AtlasWeb.Designer.cs
- XmlDataCollection.cs
- GifBitmapDecoder.cs
- RTLAwareMessageBox.cs
- COAUTHIDENTITY.cs
- HwndSourceParameters.cs
- LocalizationCodeDomSerializer.cs
- OdbcPermission.cs
- ExceptionHelpers.cs
- DataGridViewCellStyleContentChangedEventArgs.cs
- TextServicesDisplayAttribute.cs
- ObjectItemCollection.cs
- BlobPersonalizationState.cs
- RegionInfo.cs
- SHA1Managed.cs
- ResXBuildProvider.cs
- ArraySegment.cs
- JpegBitmapEncoder.cs
- ToolBarOverflowPanel.cs
- IncrementalReadDecoders.cs
- ComponentDesigner.cs
- EditorOptionAttribute.cs
- HttpDebugHandler.cs
- Crc32Helper.cs
- COM2Enum.cs
- ReadOnlyCollectionBase.cs
- XmlDownloadManager.cs
- HttpValueCollection.cs
- ClientScriptManager.cs
- SoapMessage.cs
- ItemMap.cs
- XmlUTF8TextReader.cs
- listviewsubitemcollectioneditor.cs
- ListMarkerLine.cs
- ObjectMemberMapping.cs
- ChannelSinkStacks.cs
- UTF8Encoding.cs
- CultureMapper.cs
- SystemFonts.cs
- ArglessEventHandlerProxy.cs
- PolicyException.cs
- ReferentialConstraint.cs
- DataSetMappper.cs
- XmlWriterDelegator.cs
- UnsafeNativeMethods.cs
- CommandField.cs
- X509AudioLogo.cs
- ApplicationActivator.cs
- MetadataAssemblyHelper.cs
- ConnectionsZone.cs