Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / MIT / System / Web / UI / MobileControls / DataSourceHelper.cs / 1305376 / DataSourceHelper.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.Collections; using System.ComponentModel; using System.ComponentModel.Design; using System.Data; using System.Diagnostics; namespace System.Web.UI.MobileControls { /* * Data Source Helper class. Copied fairly verbatim from ASP.NET code base, and modified * to match our coding standards and, more importantly, use our exceptions. * The ASP.NET file is /system/web/ui/DataSourceHelper.cs (a private class) * * Copyright (c) 2000 Microsoft Corporation */ [Obsolete("The System.Web.Mobile.dll assembly has been deprecated and should no longer be used. For information about how to develop ASP.NET mobile applications, see http://go.microsoft.com/fwlink/?LinkId=157231.")] 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. // (Ignore DataMember parameter.) 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 ((dataMember == null) || (dataMember.Length == 0)) { 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 ArgumentException( SR.GetString(SR.DataSourceHelper_MissingDataMember, dataMember)); } else { throw new ArgumentException( SR.GetString(SR.DataSourceHelper_DataSourceWithoutDataMember, "List DataSource")); } } } if (dataSource is IEnumerable) { return (IEnumerable)dataSource; } return null; } } } // 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
- DataGridViewDataConnection.cs
- COSERVERINFO.cs
- ServiceSettingsResponseInfo.cs
- BrowserTree.cs
- ReflectionHelper.cs
- SplineKeyFrames.cs
- XmlDocumentFragment.cs
- TransformConverter.cs
- CategoryEditor.cs
- SoapDocumentServiceAttribute.cs
- _AuthenticationState.cs
- TextEndOfSegment.cs
- EventLogEntry.cs
- SchemaMerger.cs
- DelimitedListTraceListener.cs
- DesignerCategoryAttribute.cs
- SocketPermission.cs
- ConsoleTraceListener.cs
- InstanceHandleReference.cs
- HyperLinkColumn.cs
- ObjectStateEntryDbUpdatableDataRecord.cs
- BitmapCache.cs
- OneOfElement.cs
- ProfilePropertySettingsCollection.cs
- PaintEvent.cs
- WebPartZone.cs
- WindowsStatic.cs
- GlyphsSerializer.cs
- TextEncodedRawTextWriter.cs
- RectIndependentAnimationStorage.cs
- PermissionRequestEvidence.cs
- SelectedDatesCollection.cs
- XamlVector3DCollectionSerializer.cs
- QilPatternFactory.cs
- BindingListCollectionView.cs
- EventLogQuery.cs
- ServiceDiscoveryBehavior.cs
- OdbcDataReader.cs
- CellTreeNode.cs
- PolyLineSegmentFigureLogic.cs
- ProfileInfo.cs
- InternalUserCancelledException.cs
- MsmqHostedTransportConfiguration.cs
- WCFModelStrings.Designer.cs
- Exceptions.cs
- NavigationCommands.cs
- ToolStripTextBox.cs
- ModifierKeysConverter.cs
- Track.cs
- AlignmentXValidation.cs
- StringComparer.cs
- httpapplicationstate.cs
- EncoderExceptionFallback.cs
- LineVisual.cs
- StateMachineHistory.cs
- ErrorsHelper.cs
- TransformGroup.cs
- EntityViewContainer.cs
- Classification.cs
- RpcCryptoContext.cs
- TextServicesCompartmentContext.cs
- MetafileHeaderEmf.cs
- PackageStore.cs
- UrlMappingsSection.cs
- NetworkAddressChange.cs
- ButtonPopupAdapter.cs
- GeometryCollection.cs
- RequestCachePolicyConverter.cs
- DataGridViewComboBoxEditingControl.cs
- HyperLink.cs
- InputScopeManager.cs
- MenuCommand.cs
- ExpressionBuilder.cs
- XmlUtf8RawTextWriter.cs
- HighlightVisual.cs
- CqlWriter.cs
- FormatVersion.cs
- ControlBindingsCollection.cs
- MediaElementAutomationPeer.cs
- HiddenFieldPageStatePersister.cs
- XappLauncher.cs
- GridViewRowPresenterBase.cs
- FileChangesMonitor.cs
- TraceSection.cs
- OdbcError.cs
- PkcsUtils.cs
- WindowsToolbar.cs
- AdornedElementPlaceholder.cs
- EntityDataSourceDataSelectionPanel.cs
- GeneralTransform3D.cs
- IgnoreSectionHandler.cs
- MenuAdapter.cs
- LineVisual.cs
- OleDbError.cs
- AspNetSynchronizationContext.cs
- SizeChangedEventArgs.cs
- AnimationClock.cs
- HttpBufferlessInputStream.cs
- ContentFileHelper.cs
- MetadataArtifactLoader.cs