Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / ListSourceHelper.cs / 1 / ListSourceHelper.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System.Collections; using System.ComponentModel; using System.Security.Permissions; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] 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. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System.Collections; using System.ComponentModel; using System.Security.Permissions; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ItemContainerGenerator.cs
- PeerNearMe.cs
- Calendar.cs
- RadialGradientBrush.cs
- JsonDataContract.cs
- ValidationError.cs
- XpsS0ValidatingLoader.cs
- TreeNodeBindingDepthConverter.cs
- Tuple.cs
- PublisherIdentityPermission.cs
- TimerElapsedEvenArgs.cs
- ResourceContainer.cs
- MappingItemCollection.cs
- WebSysDescriptionAttribute.cs
- XmlToDatasetMap.cs
- EntitySqlQueryCacheKey.cs
- Pts.cs
- MouseActionValueSerializer.cs
- DomNameTable.cs
- SamlAdvice.cs
- Menu.cs
- WebPartDisplayModeCancelEventArgs.cs
- WebServiceReceiveDesigner.cs
- BufferedOutputStream.cs
- DbConnectionFactory.cs
- BaseTemplateParser.cs
- TreeView.cs
- TableParagraph.cs
- TableCellCollection.cs
- SessionPageStatePersister.cs
- DataProviderNameConverter.cs
- KnownAssembliesSet.cs
- documentsequencetextpointer.cs
- UTF32Encoding.cs
- XomlCompilerError.cs
- ClientRolePrincipal.cs
- DbParameterCollectionHelper.cs
- ConfigViewGenerator.cs
- FileReservationCollection.cs
- ToolStripPanel.cs
- DataGridViewButtonColumn.cs
- AssemblyInfo.cs
- Privilege.cs
- Debug.cs
- CustomErrorCollection.cs
- XmlSerializationReader.cs
- LambdaCompiler.Unary.cs
- LinkedResource.cs
- SafeArrayTypeMismatchException.cs
- webeventbuffer.cs
- WpfWebRequestHelper.cs
- FormClosingEvent.cs
- HwndHostAutomationPeer.cs
- MouseBinding.cs
- BlurEffect.cs
- StateDesigner.cs
- InstanceCreationEditor.cs
- MessageQueueTransaction.cs
- ErrorStyle.cs
- InitializationEventAttribute.cs
- TypeElement.cs
- BindableAttribute.cs
- Properties.cs
- IdentifierCreationService.cs
- PageHandlerFactory.cs
- DataGridViewAutoSizeModeEventArgs.cs
- EntitySqlQueryCacheEntry.cs
- RankException.cs
- InstanceDescriptor.cs
- Font.cs
- BrushMappingModeValidation.cs
- Size3D.cs
- CFStream.cs
- IdentityModelStringsVersion1.cs
- PrinterUnitConvert.cs
- NamespaceEmitter.cs
- HtmlInputSubmit.cs
- StrokeCollection2.cs
- DataTableNewRowEvent.cs
- XhtmlBasicListAdapter.cs
- StringDictionary.cs
- Configuration.cs
- TypeUnloadedException.cs
- WorkflowRequestContext.cs
- Int16.cs
- PartialCachingAttribute.cs
- MILUtilities.cs
- KeyValueSerializer.cs
- EditorAttributeInfo.cs
- CustomUserNameSecurityTokenAuthenticator.cs
- DecimalMinMaxAggregationOperator.cs
- CheckedListBox.cs
- CodeDOMUtility.cs
- GlobalizationAssembly.cs
- CloseSequenceResponse.cs
- EventProxy.cs
- RequestUriProcessor.cs
- SoapEnumAttribute.cs
- _PooledStream.cs
- AssociationSet.cs