Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / xsp / System / Web / UI / ControlIdConverter.cs / 1 / ControlIdConverter.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
namespace System.Web.UI.WebControls {
using System.Collections;
using System.ComponentModel;
using System.ComponentModel.Design;
using System.Globalization;
using System.Reflection;
using System.Web.Util;
using System.Security.Permissions;
///
/// TypeConverter for ControlParameter's ControlID property.
///
[AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
[AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)]
public class ControlIDConverter : StringConverter {
///
/// Determines whether a given control should have its id added to the StandardValuesCollection.
///
protected virtual bool FilterControl(Control control) {
return true;
}
///
/// Returns a list of all control IDs in the container.
///
private string[] GetControls(IDesignerHost host, object instance) {
IContainer container = host.Container;
// Locate nearest container
IComponent component = instance as IComponent;
if (component != null && component.Site != null) {
container = component.Site.Container;
}
if (container == null) {
return null;
}
ComponentCollection allComponents = container.Components;
ArrayList array = new ArrayList();
// For each control in the container
foreach (IComponent comp in (IEnumerable)allComponents) {
Control control = comp as Control;
// Ignore DesignerHost.RootComponent (Page or UserControl), controls that don't have ID's,
// and the Control itself
if (control != null &&
control != instance &&
control != host.RootComponent &&
control.ID != null &&
control.ID.Length > 0 &&
FilterControl(control)) {
array.Add(control.ID);
}
}
array.Sort(Comparer.Default);
return (string[])array.ToArray(typeof(string));
}
///
/// Returns a collection of standard values retrieved from the context specified
/// by the specified type descriptor.
///
public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext context) {
if (context == null) {
return null;
}
IDesignerHost host = (IDesignerHost)context.GetService(typeof(IDesignerHost));
Debug.Assert(host != null, "Unable to get IDesignerHost in ControlIDConverter");
if (host != null) {
string[] controlIDs = GetControls(host, context.Instance);
if (controlIDs == null) {
return null;
}
return new StandardValuesCollection(controlIDs);
}
return null;
}
///
/// Gets whether or not the context specified contains exclusive standard values.
///
public override bool GetStandardValuesExclusive(ITypeDescriptorContext context) {
return false;
}
///
/// Gets whether or not the specified context contains supported standard values.
///
public override bool GetStandardValuesSupported(ITypeDescriptorContext context) {
return (context != null);
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
namespace System.Web.UI.WebControls {
using System.Collections;
using System.ComponentModel;
using System.ComponentModel.Design;
using System.Globalization;
using System.Reflection;
using System.Web.Util;
using System.Security.Permissions;
///
/// TypeConverter for ControlParameter's ControlID property.
///
[AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
[AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)]
public class ControlIDConverter : StringConverter {
///
/// Determines whether a given control should have its id added to the StandardValuesCollection.
///
protected virtual bool FilterControl(Control control) {
return true;
}
///
/// Returns a list of all control IDs in the container.
///
private string[] GetControls(IDesignerHost host, object instance) {
IContainer container = host.Container;
// Locate nearest container
IComponent component = instance as IComponent;
if (component != null && component.Site != null) {
container = component.Site.Container;
}
if (container == null) {
return null;
}
ComponentCollection allComponents = container.Components;
ArrayList array = new ArrayList();
// For each control in the container
foreach (IComponent comp in (IEnumerable)allComponents) {
Control control = comp as Control;
// Ignore DesignerHost.RootComponent (Page or UserControl), controls that don't have ID's,
// and the Control itself
if (control != null &&
control != instance &&
control != host.RootComponent &&
control.ID != null &&
control.ID.Length > 0 &&
FilterControl(control)) {
array.Add(control.ID);
}
}
array.Sort(Comparer.Default);
return (string[])array.ToArray(typeof(string));
}
///
/// Returns a collection of standard values retrieved from the context specified
/// by the specified type descriptor.
///
public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext context) {
if (context == null) {
return null;
}
IDesignerHost host = (IDesignerHost)context.GetService(typeof(IDesignerHost));
Debug.Assert(host != null, "Unable to get IDesignerHost in ControlIDConverter");
if (host != null) {
string[] controlIDs = GetControls(host, context.Instance);
if (controlIDs == null) {
return null;
}
return new StandardValuesCollection(controlIDs);
}
return null;
}
///
/// Gets whether or not the context specified contains exclusive standard values.
///
public override bool GetStandardValuesExclusive(ITypeDescriptorContext context) {
return false;
}
///
/// Gets whether or not the specified context contains supported standard values.
///
public override bool GetStandardValuesSupported(ITypeDescriptorContext context) {
return (context != 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
- PageBuildProvider.cs
- EnvelopedPkcs7.cs
- BrowserInteropHelper.cs
- DataServiceQueryOfT.cs
- SizeAnimationBase.cs
- TableItemStyle.cs
- _DomainName.cs
- BasicBrowserDialog.designer.cs
- XamlSerializer.cs
- ResXResourceSet.cs
- OverrideMode.cs
- SequenceNumber.cs
- ValueExpressions.cs
- DrawingAttributesDefaultValueFactory.cs
- AdPostCacheSubstitution.cs
- RtType.cs
- OrderPreservingPipeliningSpoolingTask.cs
- Adorner.cs
- UnsafeNativeMethods.cs
- HtmlInputControl.cs
- NamespaceEmitter.cs
- _OSSOCK.cs
- RegistrySecurity.cs
- ConfigurationPropertyAttribute.cs
- AssociationSetMetadata.cs
- VsPropertyGrid.cs
- TemplateControlBuildProvider.cs
- FileLevelControlBuilderAttribute.cs
- ProcessInputEventArgs.cs
- SecurityPermission.cs
- GregorianCalendarHelper.cs
- WebServiceParameterData.cs
- Point.cs
- GridViewSortEventArgs.cs
- DataGridView.cs
- TreeView.cs
- WebBrowsableAttribute.cs
- HttpProtocolImporter.cs
- SqlClientPermission.cs
- BackStopAuthenticationModule.cs
- ListSourceHelper.cs
- ColumnTypeConverter.cs
- FontWeight.cs
- MeasureItemEvent.cs
- Domain.cs
- TextUtf8RawTextWriter.cs
- TableCell.cs
- SqlDataSourceCustomCommandEditor.cs
- Pkcs7Signer.cs
- SetIndexBinder.cs
- PrintingPermission.cs
- WmpBitmapDecoder.cs
- StylusOverProperty.cs
- OptimalTextSource.cs
- StylusPlugInCollection.cs
- CallbackDebugElement.cs
- ManagementObject.cs
- RuntimeEnvironment.cs
- LogLogRecord.cs
- HttpProfileBase.cs
- ToolStripControlHost.cs
- DocumentXmlWriter.cs
- ConfigViewGenerator.cs
- MembershipSection.cs
- UnhandledExceptionEventArgs.cs
- OpCodes.cs
- SchemaConstraints.cs
- SafeNativeMethods.cs
- PublisherMembershipCondition.cs
- RepeaterCommandEventArgs.cs
- BinaryUtilClasses.cs
- GacUtil.cs
- SocketInformation.cs
- CursorConverter.cs
- EllipseGeometry.cs
- AutomationTextAttribute.cs
- ReflectTypeDescriptionProvider.cs
- ArrangedElement.cs
- XmlILStorageConverter.cs
- SearchExpression.cs
- HttpGetProtocolReflector.cs
- InkCanvasInnerCanvas.cs
- TaskCanceledException.cs
- Vector3DCollectionValueSerializer.cs
- ButtonFieldBase.cs
- ProfileGroupSettingsCollection.cs
- OdbcConnectionString.cs
- DataServiceProcessingPipelineEventArgs.cs
- DynamicUpdateCommand.cs
- ConfigurationElement.cs
- SqlDataSourceCache.cs
- Message.cs
- DesignerAdapterAttribute.cs
- ViewService.cs
- GlobalizationAssembly.cs
- ContainsRowNumberChecker.cs
- MergablePropertyAttribute.cs
- WebPartDisplayModeCollection.cs
- GuidelineSet.cs
- sqlnorm.cs