Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / DataSourceHelper.cs / 1 / DataSourceHelper.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System; using System.Collections; using System.ComponentModel; using System.ComponentModel.Design; using System.Data; internal sealed class DataSourceHelper { private DataSourceHelper() { } internal static IEnumerable GetResolvedDataSource(object dataSource, string dataMember) { if (dataSource == null) return null; IListSource listSource = dataSource as IListSource; if (listSource != null) { IList memberList = listSource.GetList(); if (listSource.ContainsListCollection == false) { // the returned list is itself the list we need to bind to // return (IEnumerable)memberList; } if ((memberList != null) && (memberList is ITypedList)) { ITypedList typedMemberList = (ITypedList)memberList; PropertyDescriptorCollection propDescs = typedMemberList.GetItemProperties(new PropertyDescriptor[0]); if ((propDescs != null) && (propDescs.Count != 0)) { PropertyDescriptor listProperty = null; if (String.IsNullOrEmpty(dataMember)) { listProperty = propDescs[0]; } else { listProperty = propDescs.Find(dataMember, true); } if (listProperty != null) { object listRow = memberList[0]; object list = listProperty.GetValue(listRow); if ((list != null) && (list is IEnumerable)) { return (IEnumerable)list; } } throw new HttpException(SR.GetString(SR.ListSource_Missing_DataMember, dataMember)); } else { throw new HttpException(SR.GetString(SR.ListSource_Without_DataMembers)); } } } if (dataSource is IEnumerable) { return (IEnumerable)dataSource; } return null; } } } // 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
- TextModifier.cs
- TableProviderWrapper.cs
- PartitionResolver.cs
- ResXBuildProvider.cs
- NamespaceDisplay.xaml.cs
- Paragraph.cs
- PopupEventArgs.cs
- PrimaryKeyTypeConverter.cs
- TaiwanLunisolarCalendar.cs
- Column.cs
- ControlBuilderAttribute.cs
- XmlEventCache.cs
- SamlAssertion.cs
- LineGeometry.cs
- TriggerCollection.cs
- CodeRemoveEventStatement.cs
- ColorPalette.cs
- RegexInterpreter.cs
- ReflectionUtil.cs
- UrlPath.cs
- ClaimTypes.cs
- LambdaExpression.cs
- AssemblyAttributesGoHere.cs
- BindingBase.cs
- Enum.cs
- TableRowGroup.cs
- SyndicationDeserializer.cs
- NavigationEventArgs.cs
- DbModificationCommandTree.cs
- LineServicesCallbacks.cs
- ImageCodecInfoPrivate.cs
- SqlRetyper.cs
- DataGridViewButtonColumn.cs
- NextPreviousPagerField.cs
- CurrencyWrapper.cs
- RSACryptoServiceProvider.cs
- objectresult_tresulttype.cs
- EmbeddedObject.cs
- PreservationFileReader.cs
- Dynamic.cs
- EncodingNLS.cs
- DbConnectionHelper.cs
- FrameworkReadOnlyPropertyMetadata.cs
- DispatcherEventArgs.cs
- LogLogRecordEnumerator.cs
- Certificate.cs
- PixelShader.cs
- FamilyMapCollection.cs
- TextViewDesigner.cs
- DataObjectCopyingEventArgs.cs
- RuntimeEnvironment.cs
- GregorianCalendarHelper.cs
- FunctionImportElement.cs
- CodeCompiler.cs
- ToolStripPanelSelectionGlyph.cs
- AutoFocusStyle.xaml.cs
- QuaternionKeyFrameCollection.cs
- RecordManager.cs
- ImageSource.cs
- X509CertificateCollection.cs
- ExpandSegment.cs
- Identifier.cs
- ClientEventManager.cs
- UserPreferenceChangingEventArgs.cs
- SizeAnimationBase.cs
- ExpressionConverter.cs
- EntityContainerEmitter.cs
- SimpleWorkerRequest.cs
- HyperLinkDataBindingHandler.cs
- LineServices.cs
- LinqDataSourceContextData.cs
- ManualResetEvent.cs
- CSharpCodeProvider.cs
- AutomationProperty.cs
- ManipulationDeltaEventArgs.cs
- QilUnary.cs
- AdPostCacheSubstitution.cs
- Exceptions.cs
- IndexedEnumerable.cs
- XpsFilter.cs
- SmiRequestExecutor.cs
- XsltContext.cs
- PageThemeParser.cs
- OlePropertyStructs.cs
- ConstraintCollection.cs
- InputQueueChannelAcceptor.cs
- RC2CryptoServiceProvider.cs
- ComponentResourceKey.cs
- Color.cs
- PointKeyFrameCollection.cs
- PropertyRecord.cs
- SqlDeflator.cs
- FileRegion.cs
- SHA512Managed.cs
- SamlSubject.cs
- ListViewItem.cs
- precedingsibling.cs
- XmlText.cs
- IteratorFilter.cs
- Figure.cs