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
- ImageDrawing.cs
- ScaleTransform3D.cs
- DatasetMethodGenerator.cs
- ReadOnlyDictionary.cs
- DataObjectAttribute.cs
- RtType.cs
- xml.cs
- CriticalFileToken.cs
- XPathNodeHelper.cs
- GetWinFXPath.cs
- CommandBindingCollection.cs
- ServiceNameElementCollection.cs
- Identity.cs
- ItemsPanelTemplate.cs
- RuleAction.cs
- MimeParameters.cs
- WeakHashtable.cs
- LogWriteRestartAreaAsyncResult.cs
- base64Transforms.cs
- DateTimeAutomationPeer.cs
- RadioButtonAutomationPeer.cs
- UTF8Encoding.cs
- KnownTypesProvider.cs
- LinqDataSourceStatusEventArgs.cs
- Token.cs
- SinglePhaseEnlistment.cs
- PipeConnection.cs
- WebPartConnectionsDisconnectVerb.cs
- ToolStripSeparatorRenderEventArgs.cs
- GroupBoxDesigner.cs
- Compiler.cs
- ToolboxItem.cs
- RadioButton.cs
- Condition.cs
- DesignerUtility.cs
- MasterPage.cs
- LineBreak.cs
- IconHelper.cs
- TextContainerHelper.cs
- MouseDevice.cs
- ExtendedProperty.cs
- DateTimeSerializationSection.cs
- OdbcConnectionFactory.cs
- AddressAlreadyInUseException.cs
- IconConverter.cs
- TextEditorMouse.cs
- ApplicationDirectoryMembershipCondition.cs
- WebBrowserUriTypeConverter.cs
- CacheMemory.cs
- TdsEnums.cs
- GridViewRow.cs
- FormsAuthenticationEventArgs.cs
- StrokeFIndices.cs
- RbTree.cs
- TraceUtility.cs
- DesignerActionList.cs
- QuaternionIndependentAnimationStorage.cs
- xmlsaver.cs
- ClientType.cs
- WizardStepBase.cs
- XmlBufferReader.cs
- ConstraintManager.cs
- Block.cs
- RijndaelManagedTransform.cs
- Variable.cs
- TrustManager.cs
- SqlConnectionPoolGroupProviderInfo.cs
- SecurityToken.cs
- ExpressionBuilder.cs
- ActivityExecutorDelegateInfo.cs
- SubMenuStyleCollection.cs
- WinHttpWebProxyFinder.cs
- BufferAllocator.cs
- WebResourceUtil.cs
- WindowsRichEdit.cs
- HttpCachePolicyElement.cs
- HttpProfileGroupBase.cs
- FragmentQueryProcessor.cs
- WebPartZoneCollection.cs
- IncrementalCompileAnalyzer.cs
- Model3DCollection.cs
- DataSourceXmlElementAttribute.cs
- ConfigXmlWhitespace.cs
- StylusButtonEventArgs.cs
- PackageStore.cs
- ImpersonationContext.cs
- RecognizerBase.cs
- CachingHintValidation.cs
- StylusEventArgs.cs
- WebPartsPersonalizationAuthorization.cs
- SiteOfOriginContainer.cs
- UnsafeNativeMethods.cs
- BufferedGenericXmlSecurityToken.cs
- StreamGeometry.cs
- ImageKeyConverter.cs
- Int32EqualityComparer.cs
- TextBox.cs
- OpenTypeLayoutCache.cs
- Funcletizer.cs
- AuthenticationConfig.cs