Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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;
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//------------------------------------------------------------------------------
//
// 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;
}
}
}
// 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
- InheritanceRules.cs
- Context.cs
- DataBindingExpressionBuilder.cs
- AsmxEndpointPickerExtension.cs
- UnsafeNativeMethods.cs
- VectorCollectionValueSerializer.cs
- EdmComplexPropertyAttribute.cs
- StorageInfo.cs
- CodeTypeDeclaration.cs
- WhitespaceRuleLookup.cs
- DebugView.cs
- ClockGroup.cs
- ContentControl.cs
- QilFunction.cs
- ImageListUtils.cs
- BitmapEffect.cs
- WebPart.cs
- GlyphCache.cs
- TrackBarRenderer.cs
- SystemTcpStatistics.cs
- ObjRef.cs
- TagMapCollection.cs
- recordstate.cs
- IPAddressCollection.cs
- RtfToXamlLexer.cs
- TabItemAutomationPeer.cs
- Converter.cs
- Run.cs
- LinkLabel.cs
- BitmapPalette.cs
- Helpers.cs
- ThreadStaticAttribute.cs
- TextSpan.cs
- SecurityContext.cs
- HtmlControlPersistable.cs
- HttpGetProtocolImporter.cs
- XamlContextStack.cs
- BuildProviderCollection.cs
- Effect.cs
- ProfileServiceManager.cs
- HttpCapabilitiesSectionHandler.cs
- CapabilitiesAssignment.cs
- TemplateLookupAction.cs
- RemotingConfigParser.cs
- SmiRecordBuffer.cs
- ThreadLocal.cs
- XmlSchemaGroupRef.cs
- XmlSchemaComplexContentExtension.cs
- MethodBody.cs
- xsdvalidator.cs
- ImpersonateTokenRef.cs
- EventLogEntryCollection.cs
- ImageInfo.cs
- JapaneseLunisolarCalendar.cs
- MenuRendererClassic.cs
- DefaultTextStoreTextComposition.cs
- ListViewItemCollectionEditor.cs
- IChannel.cs
- DecimalStorage.cs
- Margins.cs
- httpapplicationstate.cs
- ExtentJoinTreeNode.cs
- FixedSOMPageElement.cs
- MachineKeyConverter.cs
- SessionStateSection.cs
- Int64AnimationBase.cs
- EntityTypeBase.cs
- EdmProperty.cs
- StateRuntime.cs
- CreateUserWizardDesigner.cs
- ToolStripItemRenderEventArgs.cs
- SystemFonts.cs
- IPEndPointCollection.cs
- ActiveXSite.cs
- ListControl.cs
- ClientSideProviderDescription.cs
- WMIInterop.cs
- DesignTimeParseData.cs
- ContentType.cs
- COM2Properties.cs
- DataViewListener.cs
- InstanceLockException.cs
- SqlWebEventProvider.cs
- ButtonColumn.cs
- InputMethodStateChangeEventArgs.cs
- DbDataRecord.cs
- WebPartConnectionsConnectVerb.cs
- WebBrowserContainer.cs
- RuntimeCompatibilityAttribute.cs
- shaperfactoryquerycachekey.cs
- ObjectSpanRewriter.cs
- AmbiguousMatchException.cs
- CopyOfAction.cs
- DataTablePropertyDescriptor.cs
- Soap.cs
- Matrix3DStack.cs
- IpcPort.cs
- SqlDataSourceView.cs
- HelpInfo.cs
- SoapExtensionTypeElementCollection.cs