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
- CircleHotSpot.cs
- SqlCommand.cs
- WebPartActionVerb.cs
- Helpers.cs
- SqlGenericUtil.cs
- MessageHeaderAttribute.cs
- XmlSchemas.cs
- SqlErrorCollection.cs
- OdbcConnectionPoolProviderInfo.cs
- UriWriter.cs
- XmlRootAttribute.cs
- TableLayout.cs
- ControlCollection.cs
- FileEnumerator.cs
- StringResourceManager.cs
- ProgressBar.cs
- DesignTimeParseData.cs
- EventSinkHelperWriter.cs
- MatrixValueSerializer.cs
- SymmetricKeyWrap.cs
- XamlInt32CollectionSerializer.cs
- BuildProviderCollection.cs
- objectquery_tresulttype.cs
- InvalidDocumentContentsException.cs
- RoleGroup.cs
- BuildProviderAppliesToAttribute.cs
- ToolboxItemFilterAttribute.cs
- SettingsPropertyCollection.cs
- PreparingEnlistment.cs
- Memoizer.cs
- MSAAEventDispatcher.cs
- CrossAppDomainChannel.cs
- HttpGetClientProtocol.cs
- Dictionary.cs
- Pkcs9Attribute.cs
- BinHexEncoder.cs
- MouseGestureConverter.cs
- MemberPathMap.cs
- AddInSegmentDirectoryNotFoundException.cs
- HttpConfigurationSystem.cs
- CompModSwitches.cs
- ProxyAttribute.cs
- ErrorRuntimeConfig.cs
- MediaTimeline.cs
- CompilerTypeWithParams.cs
- Misc.cs
- SapiRecoInterop.cs
- FileNotFoundException.cs
- LinqDataSourceHelper.cs
- HierarchicalDataBoundControl.cs
- ExpressionBinding.cs
- mongolianshape.cs
- AppSettingsExpressionBuilder.cs
- DerivedKeySecurityToken.cs
- X509ChainElement.cs
- SchemaImporterExtensionElement.cs
- DispatcherExceptionFilterEventArgs.cs
- ActiveXSite.cs
- WCFServiceClientProxyGenerator.cs
- SqlBulkCopyColumnMapping.cs
- CodeTypeMemberCollection.cs
- TreeBuilder.cs
- DoubleKeyFrameCollection.cs
- TemplateControl.cs
- PlacementWorkspace.cs
- CompositeTypefaceMetrics.cs
- InkPresenter.cs
- Sentence.cs
- OleServicesContext.cs
- ComponentDispatcher.cs
- DiagnosticsConfiguration.cs
- MediaSystem.cs
- DesignSurface.cs
- EnumValidator.cs
- ToolbarAUtomationPeer.cs
- RemoteWebConfigurationHostStream.cs
- ReadWriteObjectLock.cs
- DataColumnChangeEvent.cs
- EmbeddedMailObjectsCollection.cs
- Operators.cs
- XamlInterfaces.cs
- ThemeDictionaryExtension.cs
- TableLayoutSettingsTypeConverter.cs
- ProcessModelSection.cs
- ExpressionWriter.cs
- XmlSchemaElement.cs
- SafeViewOfFileHandle.cs
- QueryStatement.cs
- ClientRolePrincipal.cs
- DocumentXmlWriter.cs
- securitymgrsite.cs
- TextRunTypographyProperties.cs
- ChtmlTextWriter.cs
- ColorContextHelper.cs
- XmlNavigatorFilter.cs
- FreezableOperations.cs
- AttributeEmitter.cs
- DocumentViewerBaseAutomationPeer.cs
- PropertyTabAttribute.cs
- SchemaNotation.cs