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
- DecimalMinMaxAggregationOperator.cs
- RankException.cs
- DrawingVisualDrawingContext.cs
- RestHandler.cs
- Rijndael.cs
- FunctionMappingTranslator.cs
- EntityFrameworkVersions.cs
- StatusBarAutomationPeer.cs
- BrowserDefinition.cs
- DecodeHelper.cs
- SchemaDeclBase.cs
- DataGridHelper.cs
- CellCreator.cs
- AccessibilityHelperForVista.cs
- XsltLoader.cs
- DBConcurrencyException.cs
- ObjectSerializerFactory.cs
- ObjectStateEntryOriginalDbUpdatableDataRecord.cs
- IPAddress.cs
- WeakEventManager.cs
- DefaultPrintController.cs
- TextRangeEditTables.cs
- CheckBoxPopupAdapter.cs
- ProgressChangedEventArgs.cs
- HyperLinkField.cs
- WindowsServiceElement.cs
- RequestQueryParser.cs
- XmlSchemaElement.cs
- MetadataExchangeBindings.cs
- QuaternionRotation3D.cs
- TreeNodeClickEventArgs.cs
- Models.cs
- SqlDataSourceConnectionPanel.cs
- PerformanceCounterPermissionEntryCollection.cs
- LabelLiteral.cs
- AnnouncementInnerClientCD1.cs
- EventQueueState.cs
- ExpressionLexer.cs
- WindowsComboBox.cs
- XamlBuildTaskServices.cs
- AccessKeyManager.cs
- PriorityQueue.cs
- TextRangeEditTables.cs
- ToolboxItemCollection.cs
- TemplateLookupAction.cs
- ChainedAsyncResult.cs
- HitTestWithPointDrawingContextWalker.cs
- WsrmFault.cs
- MetadataUtil.cs
- PeerPresenceInfo.cs
- DateTimeOffset.cs
- FaultConverter.cs
- FormClosingEvent.cs
- ExitEventArgs.cs
- WindowsAuthenticationModule.cs
- NameValueCollection.cs
- LambdaCompiler.Binary.cs
- SafeUserTokenHandle.cs
- Component.cs
- Thumb.cs
- RoleManagerModule.cs
- MD5CryptoServiceProvider.cs
- FamilyCollection.cs
- ErrorProvider.cs
- HtmlTable.cs
- TypeTypeConverter.cs
- SafeEventLogWriteHandle.cs
- DataListCommandEventArgs.cs
- TableTextElementCollectionInternal.cs
- TextEditorCharacters.cs
- DrawingGroup.cs
- EncryptedXml.cs
- ServicePointManagerElement.cs
- Tuple.cs
- ObjectDataSourceFilteringEventArgs.cs
- SqlWebEventProvider.cs
- XmlFormatExtensionPointAttribute.cs
- WsatTransactionInfo.cs
- DbTransaction.cs
- BuilderInfo.cs
- RowSpanVector.cs
- DBBindings.cs
- EditorAttributeInfo.cs
- XmlSchemaAnyAttribute.cs
- DataProtection.cs
- ClosableStream.cs
- GestureRecognizer.cs
- CalendarDesigner.cs
- RootNamespaceAttribute.cs
- DelegateTypeInfo.cs
- BaseCollection.cs
- QilName.cs
- ErrorStyle.cs
- OdbcHandle.cs
- Expressions.cs
- EntityDesignerDataSourceView.cs
- VScrollProperties.cs
- ThrowHelper.cs
- InputLanguageManager.cs
- ToolStripGripRenderEventArgs.cs