Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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. // //----------------------------------------------------------------------------- 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- IsolatedStorageFileStream.cs
- OptimizedTemplateContent.cs
- ButtonBase.cs
- path.cs
- InternalCompensate.cs
- BlobPersonalizationState.cs
- LineSegment.cs
- Wizard.cs
- MenuCommands.cs
- LinqDataSourceEditData.cs
- InvalidEnumArgumentException.cs
- QueryAccessibilityHelpEvent.cs
- BreakRecordTable.cs
- XmlNodeList.cs
- NetPeerTcpBindingCollectionElement.cs
- Scheduling.cs
- SymbolType.cs
- WSTrustDec2005.cs
- KeyInterop.cs
- VectorCollectionConverter.cs
- AsyncCodeActivity.cs
- RoleManagerModule.cs
- GregorianCalendar.cs
- WorkflowDesignerMessageFilter.cs
- DeviceContext.cs
- CompletionCallbackWrapper.cs
- SqlWebEventProvider.cs
- XPathArrayIterator.cs
- SqlFlattener.cs
- DataSetUtil.cs
- KnownBoxes.cs
- XsdDateTime.cs
- printdlgexmarshaler.cs
- SqlTransaction.cs
- DiagnosticTrace.cs
- EventMemberCodeDomSerializer.cs
- Convert.cs
- SmiContext.cs
- ColorDialog.cs
- EventPropertyMap.cs
- MediaElementAutomationPeer.cs
- GenericEnumerator.cs
- CookieProtection.cs
- DecoderExceptionFallback.cs
- WebBrowserUriTypeConverter.cs
- SessionViewState.cs
- EncoderFallback.cs
- __ComObject.cs
- ServiceOperationParameter.cs
- ProfileManager.cs
- WindowsGraphicsCacheManager.cs
- _LocalDataStore.cs
- ContentHostHelper.cs
- Message.cs
- NativeMethodsOther.cs
- FontFamily.cs
- SqlReorderer.cs
- FormViewCommandEventArgs.cs
- BinaryOperationBinder.cs
- WebScriptEnablingElement.cs
- FileLogRecordEnumerator.cs
- ChildChangedEventArgs.cs
- MailDefinition.cs
- ServiceControllerDesigner.cs
- VisualCollection.cs
- RadioButtonFlatAdapter.cs
- ReceiveMessageContent.cs
- ZipIORawDataFileBlock.cs
- ViewGenerator.cs
- ModuleBuilderData.cs
- HttpProfileGroupBase.cs
- COAUTHIDENTITY.cs
- TileBrush.cs
- DataGridTextBoxColumn.cs
- ReferentialConstraint.cs
- SelectionProviderWrapper.cs
- SqlDeflator.cs
- NumericPagerField.cs
- TimeSpanConverter.cs
- ReadOnlyTernaryTree.cs
- ObjectFactoryCodeDomTreeGenerator.cs
- validationstate.cs
- versioninfo.cs
- TableCellCollection.cs
- TextEditorThreadLocalStore.cs
- DataGridParentRows.cs
- FontDriver.cs
- PriorityBinding.cs
- OrderedDictionary.cs
- XmlText.cs
- DocumentReferenceCollection.cs
- UIElementParagraph.cs
- EntityDataSourceSelectingEventArgs.cs
- TransactionScope.cs
- ZoneLinkButton.cs
- ValidatorAttribute.cs
- WorkflowItemPresenter.cs
- ListSortDescription.cs
- PropertyValueUIItem.cs
- XmlWriter.cs