Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / WebParts / ProxyWebPartManager.cs / 1 / ProxyWebPartManager.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls.WebParts { using System; using System.ComponentModel; using System.Diagnostics; using System.Security.Permissions; using System.Web.UI; [ Bindable(false), Designer("System.Web.UI.Design.WebControls.WebParts.ProxyWebPartManagerDesigner, " + AssemblyRef.SystemDesign), NonVisualControl(), ParseChildren(true), PersistChildren(false) ] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class ProxyWebPartManager : Control { private ProxyWebPartConnectionCollection _staticConnections; [ EditorBrowsable(EditorBrowsableState.Never), ] public override string ClientID { get { return base.ClientID; } } [ EditorBrowsable(EditorBrowsableState.Never), ] public override ControlCollection Controls { get { return base.Controls; } } [ DefaultValue(false), EditorBrowsable(EditorBrowsableState.Never), ] public override bool EnableTheming { get { return false; } set { throw new NotSupportedException(SR.GetString(SR.NoThemingSupport, this.GetType().Name)); } } [ DefaultValue(""), EditorBrowsable(EditorBrowsableState.Never), ] public override string SkinID { get { return String.Empty; } set { throw new NotSupportedException(SR.GetString(SR.NoThemingSupport, this.GetType().Name)); } } [ DefaultValue(null), DesignerSerializationVisibility(DesignerSerializationVisibility.Content), EditorBrowsable(EditorBrowsableState.Never), MergableProperty(false), PersistenceMode(PersistenceMode.InnerProperty), WebCategory("Behavior"), WebSysDescription(SR.WebPartManager_StaticConnections), ] public ProxyWebPartConnectionCollection StaticConnections { get { if (_staticConnections == null) { _staticConnections = new ProxyWebPartConnectionCollection(); } return _staticConnections; } } [ Browsable(false), DefaultValue(false), EditorBrowsable(EditorBrowsableState.Never), ] public override bool Visible { get { return false; } set { throw new NotSupportedException(SR.GetString(SR.ControlNonVisual, this.GetType().Name)); } } protected override ControlCollection CreateControlCollection() { return new EmptyControlCollection(this); } [ EditorBrowsable(EditorBrowsableState.Never), ] public override void Focus() { throw new NotSupportedException(SR.GetString(SR.NoFocusSupport, this.GetType().Name)); } protected internal override void OnInit(EventArgs e) { base.OnInit(e); Page page = Page; Debug.Assert(page != null); if ((page != null) && !DesignMode) { WebPartManager webPartManager = WebPartManager.GetCurrentWebPartManager(page); if (webPartManager == null) { throw new InvalidOperationException(SR.GetString(SR.WebPartManagerRequired)); } StaticConnections.SetWebPartManager(webPartManager); } } } } // 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
- DesignerSerializationVisibilityAttribute.cs
- ReferencedType.cs
- TreeNodeClickEventArgs.cs
- ConfigXmlWhitespace.cs
- OneOfConst.cs
- BaseDataBoundControl.cs
- BaseParser.cs
- KeyPressEvent.cs
- ObjectTokenCategory.cs
- AssociationSetMetadata.cs
- FileReservationCollection.cs
- CodeNamespaceImportCollection.cs
- NamespaceEmitter.cs
- ToolboxDataAttribute.cs
- ElementHostAutomationPeer.cs
- HttpApplicationFactory.cs
- WindowsListViewItemStartMenu.cs
- EndpointAddressElementBase.cs
- LocalValueEnumerator.cs
- XmlnsCache.cs
- EventRouteFactory.cs
- InternalConfigEventArgs.cs
- EdmToObjectNamespaceMap.cs
- SqlInternalConnection.cs
- GeneralTransform2DTo3D.cs
- StyleXamlParser.cs
- SqlMetaData.cs
- WindowClosedEventArgs.cs
- SimpleType.cs
- ChoiceConverter.cs
- TextBoxRenderer.cs
- ListViewCancelEventArgs.cs
- RequiredAttributeAttribute.cs
- OracleInternalConnection.cs
- OleDbErrorCollection.cs
- HttpGetServerProtocol.cs
- ResourceContainer.cs
- ToolboxItemSnapLineBehavior.cs
- WebPartManagerInternals.cs
- GridViewAutoFormat.cs
- OAVariantLib.cs
- TypePropertyEditor.cs
- ContentElementAutomationPeer.cs
- ObjectDataSourceDisposingEventArgs.cs
- CompensationToken.cs
- FreeIndexList.cs
- NavigationPropertyEmitter.cs
- DesignerActionItem.cs
- StateWorkerRequest.cs
- RemotingAttributes.cs
- XNodeNavigator.cs
- BrowserCapabilitiesCodeGenerator.cs
- DecoderNLS.cs
- InputLanguage.cs
- UiaCoreTypesApi.cs
- XmlHierarchyData.cs
- TraceProvider.cs
- StreamResourceInfo.cs
- InfoCardRSAOAEPKeyExchangeDeformatter.cs
- WebBrowser.cs
- CompiledRegexRunner.cs
- RegistryKey.cs
- QueryMatcher.cs
- ContractInferenceHelper.cs
- ClientRuntimeConfig.cs
- PassportAuthenticationEventArgs.cs
- SqlMultiplexer.cs
- TextTreeRootTextBlock.cs
- LoginCancelEventArgs.cs
- DescendantQuery.cs
- WebPartsPersonalizationAuthorization.cs
- UserControlDesigner.cs
- OdbcDataReader.cs
- SR.cs
- brushes.cs
- XmlSubtreeReader.cs
- ReturnEventArgs.cs
- WhitespaceRuleReader.cs
- DecoderExceptionFallback.cs
- TransformValueSerializer.cs
- ManagedFilter.cs
- ToolZone.cs
- AccessDataSource.cs
- AttachedPropertyBrowsableForTypeAttribute.cs
- WebBrowsableAttribute.cs
- HtmlTableCellCollection.cs
- RequestNavigateEventArgs.cs
- SystemInfo.cs
- HyperLink.cs
- Select.cs
- AdCreatedEventArgs.cs
- BuildProvidersCompiler.cs
- Calendar.cs
- XmlCustomFormatter.cs
- MembershipValidatePasswordEventArgs.cs
- RectangleGeometry.cs
- EventSetter.cs
- XPathDescendantIterator.cs
- RadioButton.cs
- Pointer.cs