Code:
/ 4.0 / 4.0 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ListViewItem.cs
- DiagnosticTrace.cs
- MainMenu.cs
- InputMethodStateChangeEventArgs.cs
- WindowsTreeView.cs
- SHA384.cs
- PrintController.cs
- RenderCapability.cs
- XmlUtil.cs
- Rect.cs
- DownloadProgressEventArgs.cs
- Processor.cs
- KeyedHashAlgorithm.cs
- SignalGate.cs
- ManualWorkflowSchedulerService.cs
- CacheAxisQuery.cs
- NavigationService.cs
- DoubleConverter.cs
- StorageEndPropertyMapping.cs
- SynthesizerStateChangedEventArgs.cs
- FocusTracker.cs
- RelationalExpressions.cs
- DesignerDataParameter.cs
- SystemWebCachingSectionGroup.cs
- BamlResourceContent.cs
- HScrollProperties.cs
- AutomationPropertyInfo.cs
- BinaryObjectInfo.cs
- RegionData.cs
- MultipleViewPattern.cs
- DependencyPropertyConverter.cs
- ProjectionCamera.cs
- DataGridBoundColumn.cs
- HttpRequestMessageProperty.cs
- GPStream.cs
- WindowsGrip.cs
- basecomparevalidator.cs
- GridViewRowEventArgs.cs
- Variable.cs
- ListBoxItemAutomationPeer.cs
- XmlCharType.cs
- TextTreeFixupNode.cs
- SqlBuilder.cs
- AssemblyBuilder.cs
- Serializer.cs
- OdbcConnectionHandle.cs
- __FastResourceComparer.cs
- DatePickerAutomationPeer.cs
- SystemEvents.cs
- BindableTemplateBuilder.cs
- KeyManager.cs
- ListControl.cs
- FunctionUpdateCommand.cs
- ColorAnimationBase.cs
- AttributeUsageAttribute.cs
- TypeResolvingOptions.cs
- CallSiteHelpers.cs
- CompareValidator.cs
- ErrorRuntimeConfig.cs
- DesignSurface.cs
- ObjectTag.cs
- altserialization.cs
- transactioncontext.cs
- ElementFactory.cs
- FlatButtonAppearance.cs
- DataGridTextColumn.cs
- NestedContainer.cs
- DependencyObjectValidator.cs
- DataGridViewTopLeftHeaderCell.cs
- AdornerDecorator.cs
- Directory.cs
- DeferredElementTreeState.cs
- TargetConverter.cs
- FormViewCommandEventArgs.cs
- ComponentResourceKey.cs
- XsltInput.cs
- TransformPattern.cs
- SecureUICommand.cs
- StylusPlugInCollection.cs
- AsyncCodeActivityContext.cs
- DataViewSetting.cs
- DataReaderContainer.cs
- _RegBlobWebProxyDataBuilder.cs
- GraphicsState.cs
- Repeater.cs
- datacache.cs
- DbProviderFactory.cs
- TemplateBindingExpressionConverter.cs
- VirtualPath.cs
- ComplusTypeValidator.cs
- _SslSessionsCache.cs
- ListViewGroup.cs
- InputMethodStateTypeInfo.cs
- BezierSegment.cs
- TrustManagerPromptUI.cs
- MessageAction.cs
- XPathConvert.cs
- StreamReader.cs
- ObjectContextServiceProvider.cs
- DocumentApplicationJournalEntry.cs