Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / ListSourceHelper.cs / 1305376 / ListSourceHelper.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System.Collections; using System.ComponentModel; public static class ListSourceHelper { public static bool ContainsListCollection(IDataSource dataSource) { ICollection viewNames = dataSource.GetViewNames(); if (viewNames != null && viewNames.Count > 0) { return true; } return false; } public static IList GetList(IDataSource dataSource) { ICollection viewNames = dataSource.GetViewNames(); if (viewNames != null && viewNames.Count > 0) { return new ListSourceList(dataSource); } return null; } internal sealed class ListSourceList : CollectionBase, ITypedList { IDataSource _dataSource; public ListSourceList(IDataSource dataSource) { _dataSource = dataSource; ((IList)this).Add(new ListSourceRow(_dataSource)); } #region ITypedList implementation string ITypedList.GetListName(PropertyDescriptor[] listAccessors) { return String.Empty; } PropertyDescriptorCollection ITypedList.GetItemProperties(PropertyDescriptor[] listAccessors) { if (_dataSource != null) { ICollection viewNames = _dataSource.GetViewNames(); if (viewNames != null && viewNames.Count > 0) { string[] viewNamesArray = new string[viewNames.Count]; viewNames.CopyTo(viewNamesArray, 0); PropertyDescriptor[] props = new PropertyDescriptor[viewNames.Count]; for (int i = 0; i < viewNamesArray.Length; i++) { props[i] = new ListSourcePropertyDescriptor(viewNamesArray[i]); } return new PropertyDescriptorCollection(props); } } return new PropertyDescriptorCollection(null); } #endregion ITypedList implementations } internal class ListSourceRow { IDataSource _dataSource; public ListSourceRow(IDataSource dataSource) { _dataSource = dataSource; } public IDataSource DataSource { get { return _dataSource; } } } internal class ListSourcePropertyDescriptor : PropertyDescriptor { string _name; public ListSourcePropertyDescriptor(string name) : base(name, null) { _name = name; } public override Type ComponentType { get { return typeof(ListSourceRow); } } public override bool IsReadOnly { get { return true; } } public override Type PropertyType { get { return typeof(IEnumerable); } } public override bool CanResetValue(object value) { return false; } public override object GetValue(object source) { if (source is ListSourceRow) { ListSourceRow row = (ListSourceRow)source; IDataSource dataSource = row.DataSource; return dataSource.GetView(_name).ExecuteSelect(DataSourceSelectArguments.Empty); } return null; } public override void ResetValue(object component) { throw new NotSupportedException(); } public override void SetValue(object component, object value) { throw new NotSupportedException(); } public override bool ShouldSerializeValue(object component) { return false; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System.Collections; using System.ComponentModel; public static class ListSourceHelper { public static bool ContainsListCollection(IDataSource dataSource) { ICollection viewNames = dataSource.GetViewNames(); if (viewNames != null && viewNames.Count > 0) { return true; } return false; } public static IList GetList(IDataSource dataSource) { ICollection viewNames = dataSource.GetViewNames(); if (viewNames != null && viewNames.Count > 0) { return new ListSourceList(dataSource); } return null; } internal sealed class ListSourceList : CollectionBase, ITypedList { IDataSource _dataSource; public ListSourceList(IDataSource dataSource) { _dataSource = dataSource; ((IList)this).Add(new ListSourceRow(_dataSource)); } #region ITypedList implementation string ITypedList.GetListName(PropertyDescriptor[] listAccessors) { return String.Empty; } PropertyDescriptorCollection ITypedList.GetItemProperties(PropertyDescriptor[] listAccessors) { if (_dataSource != null) { ICollection viewNames = _dataSource.GetViewNames(); if (viewNames != null && viewNames.Count > 0) { string[] viewNamesArray = new string[viewNames.Count]; viewNames.CopyTo(viewNamesArray, 0); PropertyDescriptor[] props = new PropertyDescriptor[viewNames.Count]; for (int i = 0; i < viewNamesArray.Length; i++) { props[i] = new ListSourcePropertyDescriptor(viewNamesArray[i]); } return new PropertyDescriptorCollection(props); } } return new PropertyDescriptorCollection(null); } #endregion ITypedList implementations } internal class ListSourceRow { IDataSource _dataSource; public ListSourceRow(IDataSource dataSource) { _dataSource = dataSource; } public IDataSource DataSource { get { return _dataSource; } } } internal class ListSourcePropertyDescriptor : PropertyDescriptor { string _name; public ListSourcePropertyDescriptor(string name) : base(name, null) { _name = name; } public override Type ComponentType { get { return typeof(ListSourceRow); } } public override bool IsReadOnly { get { return true; } } public override Type PropertyType { get { return typeof(IEnumerable); } } public override bool CanResetValue(object value) { return false; } public override object GetValue(object source) { if (source is ListSourceRow) { ListSourceRow row = (ListSourceRow)source; IDataSource dataSource = row.DataSource; return dataSource.GetView(_name).ExecuteSelect(DataSourceSelectArguments.Empty); } return null; } public override void ResetValue(object component) { throw new NotSupportedException(); } public override void SetValue(object component, object value) { throw new NotSupportedException(); } public override bool ShouldSerializeValue(object component) { return false; } } } } // 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
- OrderedDictionary.cs
- CompiledQuery.cs
- TemplatedWizardStep.cs
- SqlStatistics.cs
- HttpModulesSection.cs
- LayoutSettings.cs
- ToolStripManager.cs
- HierarchicalDataSourceIDConverter.cs
- WsdlWriter.cs
- NativeActivity.cs
- VerificationAttribute.cs
- XmlReaderDelegator.cs
- Region.cs
- ScrollItemProviderWrapper.cs
- MethodCallTranslator.cs
- UrlMappingsSection.cs
- TypeElementCollection.cs
- TagNameToTypeMapper.cs
- CompoundFileReference.cs
- DoubleAverageAggregationOperator.cs
- ConnectionManagementSection.cs
- RoleManagerEventArgs.cs
- PieceDirectory.cs
- DataGridParentRows.cs
- DbProviderFactory.cs
- AdapterDictionary.cs
- XmlDocument.cs
- XmlSequenceWriter.cs
- ParserStreamGeometryContext.cs
- DefaultCommandExtensionCallback.cs
- CodeSubDirectoriesCollection.cs
- ControllableStoryboardAction.cs
- SecuritySessionFilter.cs
- AuthenticationConfig.cs
- SessionEndedEventArgs.cs
- StateMachine.cs
- TextServicesCompartment.cs
- DBSchemaRow.cs
- PriorityQueue.cs
- ComAdminInterfaces.cs
- ListControlConvertEventArgs.cs
- CapabilitiesState.cs
- StrongNamePublicKeyBlob.cs
- TypeDescriptor.cs
- LiteralSubsegment.cs
- CompleteWizardStep.cs
- ClientSettingsStore.cs
- MasterPage.cs
- CompositeScriptReference.cs
- IODescriptionAttribute.cs
- MarkupExtensionParser.cs
- ProvidePropertyAttribute.cs
- ByteStream.cs
- WindowsRichEditRange.cs
- NeedSkipTokenVisitor.cs
- RuleInfoComparer.cs
- DropDownList.cs
- HttpClientCredentialType.cs
- CardSpaceException.cs
- SerialErrors.cs
- BindingCompleteEventArgs.cs
- HtmlInputHidden.cs
- GPRECTF.cs
- Options.cs
- Cursors.cs
- PrePrepareMethodAttribute.cs
- TransportSecurityHelpers.cs
- SmtpFailedRecipientException.cs
- BufferedGraphics.cs
- SystemIPGlobalStatistics.cs
- Win32PrintDialog.cs
- XmlLoader.cs
- ThousandthOfEmRealDoubles.cs
- MessageQueuePermissionEntry.cs
- ImageCreator.cs
- CheckBoxFlatAdapter.cs
- CngAlgorithm.cs
- DecoderReplacementFallback.cs
- AttributeEmitter.cs
- PersonalizationDictionary.cs
- PeerTransportCredentialType.cs
- UrlPropertyAttribute.cs
- Int64.cs
- TypeExtensionSerializer.cs
- PathParser.cs
- PerformanceCounterManager.cs
- HttpChannelFactory.cs
- RSAPKCS1KeyExchangeDeformatter.cs
- UnmanagedHandle.cs
- XmlNamedNodeMap.cs
- RequestQueue.cs
- Property.cs
- AmbientValueAttribute.cs
- SqlException.cs
- SqlUnionizer.cs
- HtmlValidationSummaryAdapter.cs
- ListenerElementsCollection.cs
- RenderCapability.cs
- returneventsaver.cs
- TypeResolver.cs