Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- RadioButtonRenderer.cs
- LayoutTable.cs
- ToolStripButton.cs
- ScriptResourceAttribute.cs
- InvokeHandlers.cs
- Point3DAnimation.cs
- DefaultPropertiesToSend.cs
- CodeCompiler.cs
- XmlArrayItemAttributes.cs
- Item.cs
- MetadataCache.cs
- FormViewPageEventArgs.cs
- SystemException.cs
- SBCSCodePageEncoding.cs
- ToolStripItemImageRenderEventArgs.cs
- MetadataArtifactLoaderXmlReaderWrapper.cs
- IMembershipProvider.cs
- Subtree.cs
- MethodCallTranslator.cs
- SoapTransportImporter.cs
- DrawingBrush.cs
- DataColumnCollection.cs
- _DomainName.cs
- SamlSerializer.cs
- WebPartRestoreVerb.cs
- QueryInterceptorAttribute.cs
- SqlNode.cs
- ItemList.cs
- FlagsAttribute.cs
- ElementHostPropertyMap.cs
- XmlSchemaGroupRef.cs
- ParameterBuilder.cs
- XmlNullResolver.cs
- FrameSecurityDescriptor.cs
- CopyAttributesAction.cs
- RouteItem.cs
- RtfToXamlReader.cs
- AnimatedTypeHelpers.cs
- Viewport3DVisual.cs
- MulticastNotSupportedException.cs
- SecurityManager.cs
- PrivilegeNotHeldException.cs
- HtmlShim.cs
- EventLogConfiguration.cs
- CustomAttribute.cs
- ConnectionStringsExpressionBuilder.cs
- ClientRequest.cs
- OdbcReferenceCollection.cs
- ExpressionQuoter.cs
- PermissionSetTriple.cs
- TypeConverterValueSerializer.cs
- XmlNodeComparer.cs
- TableLayoutStyle.cs
- BufferedReadStream.cs
- HttpListenerRequest.cs
- CustomBindingElementCollection.cs
- SharedStatics.cs
- DebuggerAttributes.cs
- MdiWindowListItemConverter.cs
- MediaElementAutomationPeer.cs
- regiisutil.cs
- Message.cs
- PageParserFilter.cs
- ListViewGroupCollectionEditor.cs
- TextChangedEventArgs.cs
- NetworkStream.cs
- WebPartVerbsEventArgs.cs
- RadioButton.cs
- StrongNameUtility.cs
- HttpListenerContext.cs
- InkCanvasAutomationPeer.cs
- SubclassTypeValidatorAttribute.cs
- WebAdminConfigurationHelper.cs
- UrlPath.cs
- Int16KeyFrameCollection.cs
- DecimalAnimationUsingKeyFrames.cs
- MapPathBasedVirtualPathProvider.cs
- TextRangeProviderWrapper.cs
- StylusLogic.cs
- AnnotationHighlightLayer.cs
- TargetPerspective.cs
- FrameworkRichTextComposition.cs
- RequestCacheValidator.cs
- SymmetricAlgorithm.cs
- StylusOverProperty.cs
- MonitoringDescriptionAttribute.cs
- RealizationDrawingContextWalker.cs
- ComUdtElement.cs
- ResourceReferenceExpressionConverter.cs
- RegexCaptureCollection.cs
- DataGridViewSelectedColumnCollection.cs
- StringResourceManager.cs
- BufferBuilder.cs
- DispatchChannelSink.cs
- WindowsRichEditRange.cs
- RouteCollection.cs
- DESCryptoServiceProvider.cs
- DefaultSection.cs
- OracleConnection.cs
- MergeLocalizationDirectives.cs