Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / 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 // NOTE: I am ignoring the DataMember parameter... ideally we might have // thrown an exception, but this would mess up design-time usage // where the user may change the data source from a DataSet to a // DataTable. 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; } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TabControl.cs
- XmlLanguage.cs
- ZipIOLocalFileBlock.cs
- EmptyEnumerable.cs
- TagPrefixInfo.cs
- RSAPKCS1SignatureFormatter.cs
- WeakHashtable.cs
- DispatcherSynchronizationContext.cs
- ResourceExpressionBuilder.cs
- MessageTransmitTraceRecord.cs
- DragEventArgs.cs
- recordstatefactory.cs
- ExecutionContext.cs
- InputMethod.cs
- DropDownList.cs
- ArrayHelper.cs
- DetailsViewActionList.cs
- ISCIIEncoding.cs
- ClickablePoint.cs
- KeyboardNavigation.cs
- CollectionViewGroupRoot.cs
- TextOptionsInternal.cs
- PropertyValueChangedEvent.cs
- SafeLocalAllocation.cs
- SqlNodeAnnotations.cs
- XmlILModule.cs
- PrinterUnitConvert.cs
- PersonalizableAttribute.cs
- ZipIOModeEnforcingStream.cs
- DataGridViewSortCompareEventArgs.cs
- Comparer.cs
- Delay.cs
- FontDialog.cs
- DuplexChannelBinder.cs
- NGCSerializationManager.cs
- SrgsDocument.cs
- RenderCapability.cs
- SingleSelectRootGridEntry.cs
- OpenFileDialog.cs
- TimerExtension.cs
- AuthorizationSection.cs
- AsyncOperation.cs
- ToolboxItemImageConverter.cs
- AlternateViewCollection.cs
- BypassElement.cs
- TypeDescriptor.cs
- OleDbMetaDataFactory.cs
- RemotingException.cs
- SiteMapNodeItemEventArgs.cs
- WindowsScroll.cs
- FixUpCollection.cs
- HwndProxyElementProvider.cs
- RouteItem.cs
- Pointer.cs
- XmlQualifiedName.cs
- CharEnumerator.cs
- LassoSelectionBehavior.cs
- HttpDictionary.cs
- WinFormsUtils.cs
- X509Utils.cs
- SerializableAttribute.cs
- AttachedPropertyBrowsableWhenAttributePresentAttribute.cs
- SchemaElementLookUpTable.cs
- RestHandler.cs
- MatrixTransform3D.cs
- ChannelSinkStacks.cs
- DataGridComponentEditor.cs
- TickBar.cs
- WebHostUnsafeNativeMethods.cs
- CorruptingExceptionCommon.cs
- XmlConvert.cs
- XXXInfos.cs
- DefaultPropertyAttribute.cs
- DrawingContext.cs
- StorageConditionPropertyMapping.cs
- Int64Storage.cs
- XComponentModel.cs
- EndpointInstanceProvider.cs
- documentsequencetextcontainer.cs
- UshortList2.cs
- XsltArgumentList.cs
- Attributes.cs
- DataGridHyperlinkColumn.cs
- OutputCacheSettingsSection.cs
- WmlValidationSummaryAdapter.cs
- ScriptServiceAttribute.cs
- unsafeIndexingFilterStream.cs
- FormsAuthenticationEventArgs.cs
- SqlResolver.cs
- ResourceManager.cs
- odbcmetadatacollectionnames.cs
- _CommandStream.cs
- EditorZone.cs
- HttpStreams.cs
- WsdlBuildProvider.cs
- EffectiveValueEntry.cs
- FontCacheLogic.cs
- DispatchChannelSink.cs
- ConfigUtil.cs
- BindingSourceDesigner.cs