Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebParts / ProxyWebPartManager.cs / 1305376 / 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.Web.UI; [ Bindable(false), Designer("System.Web.UI.Design.WebControls.WebParts.ProxyWebPartManagerDesigner, " + AssemblyRef.SystemDesign), NonVisualControl(), ParseChildren(true), PersistChildren(false) ] 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. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls.WebParts { using System; using System.ComponentModel; using System.Diagnostics; using System.Web.UI; [ Bindable(false), Designer("System.Web.UI.Design.WebControls.WebParts.ProxyWebPartManagerDesigner, " + AssemblyRef.SystemDesign), NonVisualControl(), ParseChildren(true), PersistChildren(false) ] 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- WebRequest.cs
- TextDecorations.cs
- PolicyVersionConverter.cs
- HttpConfigurationContext.cs
- ImageIndexConverter.cs
- EventSinkHelperWriter.cs
- SortAction.cs
- CapabilitiesSection.cs
- Crypto.cs
- XmlHierarchicalEnumerable.cs
- TransformProviderWrapper.cs
- DesignerListAdapter.cs
- GroupedContextMenuStrip.cs
- XmlHelper.cs
- ControlPersister.cs
- XhtmlConformanceSection.cs
- ClonableStack.cs
- Attachment.cs
- MediaScriptCommandRoutedEventArgs.cs
- FormsAuthenticationModule.cs
- EventMetadata.cs
- TextTreePropertyUndoUnit.cs
- StackBuilderSink.cs
- ViewLoader.cs
- SizeFConverter.cs
- ServiceNotStartedException.cs
- ToolboxDataAttribute.cs
- NetTcpSecurityElement.cs
- TriggerActionCollection.cs
- wgx_render.cs
- DbModificationClause.cs
- HMACSHA256.cs
- Soap.cs
- _HeaderInfoTable.cs
- StateWorkerRequest.cs
- Typography.cs
- WebPartCatalogCloseVerb.cs
- OptimalTextSource.cs
- ModelItemDictionaryImpl.cs
- UniqueIdentifierService.cs
- DataTemplateKey.cs
- StorageInfo.cs
- ListViewCancelEventArgs.cs
- ConfigurationManagerInternalFactory.cs
- X509Certificate2.cs
- DesignerRegionCollection.cs
- IDataContractSurrogate.cs
- CompilerTypeWithParams.cs
- _FtpDataStream.cs
- XPathNodeList.cs
- Misc.cs
- WindowsBrush.cs
- PageCopyCount.cs
- PermissionSetTriple.cs
- TdsParserStateObject.cs
- NumberFormatInfo.cs
- PropertyToken.cs
- ContextStaticAttribute.cs
- InProcStateClientManager.cs
- ConfigurationException.cs
- SqlReferenceCollection.cs
- _ProxyChain.cs
- WebContext.cs
- ChannelReliableSession.cs
- TransactionManager.cs
- FixedHyperLink.cs
- ApplicationCommands.cs
- BamlMapTable.cs
- SqlStatistics.cs
- InstanceKeyCompleteException.cs
- BackStopAuthenticationModule.cs
- XsdCachingReader.cs
- validation.cs
- DataAdapter.cs
- TraceSection.cs
- HScrollBar.cs
- DrawingBrush.cs
- PermissionSetEnumerator.cs
- HighlightComponent.cs
- AtomServiceDocumentSerializer.cs
- LinkButton.cs
- ContentType.cs
- SettingsProviderCollection.cs
- SuppressIldasmAttribute.cs
- ImmutableAssemblyCacheEntry.cs
- TableCell.cs
- DataControlLinkButton.cs
- Helpers.cs
- FunctionNode.cs
- HttpListenerRequest.cs
- QilTargetType.cs
- Line.cs
- CacheEntry.cs
- SharedPersonalizationStateInfo.cs
- WinEventHandler.cs
- BitmapEffectOutputConnector.cs
- WsatStrings.cs
- StorageAssociationSetMapping.cs
- AffineTransform3D.cs
- SettingsPropertyNotFoundException.cs