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
- X509Certificate.cs
- RegexReplacement.cs
- CompositeDesignerAccessibleObject.cs
- QilTypeChecker.cs
- StorageMappingItemLoader.cs
- DataGridViewSelectedColumnCollection.cs
- DeclarativeConditionsCollection.cs
- ConfigXmlElement.cs
- LocalizationParserHooks.cs
- TreeIterator.cs
- UnsafeNativeMethods.cs
- Transform3D.cs
- XmlUtf8RawTextWriter.cs
- FunctionQuery.cs
- TabPage.cs
- NumberAction.cs
- AttributeEmitter.cs
- ImageListStreamer.cs
- QueryIntervalOp.cs
- UTF7Encoding.cs
- ItemDragEvent.cs
- Label.cs
- XamlToRtfParser.cs
- counter.cs
- SafeNativeMethodsCLR.cs
- HostVisual.cs
- ValuePatternIdentifiers.cs
- InvalidOperationException.cs
- TypeConverter.cs
- Error.cs
- CharAnimationBase.cs
- XmlSchemaInfo.cs
- SharedStatics.cs
- ReadOnlyAttribute.cs
- TextModifier.cs
- DataServiceQueryContinuation.cs
- HttpValueCollection.cs
- XpsDigitalSignature.cs
- ValidatorUtils.cs
- GridViewAutoFormat.cs
- OwnerDrawPropertyBag.cs
- ConnectionPoolManager.cs
- ProfilePropertyMetadata.cs
- InputScope.cs
- DataGridViewEditingControlShowingEventArgs.cs
- QueryResults.cs
- SR.cs
- ParamArrayAttribute.cs
- PieceDirectory.cs
- TextEditorSpelling.cs
- DocumentPageHost.cs
- DeploymentSectionCache.cs
- CornerRadiusConverter.cs
- GeneralTransformGroup.cs
- SrgsOneOf.cs
- Exception.cs
- XmlUTF8TextWriter.cs
- DataRowView.cs
- MdImport.cs
- FlowDocumentScrollViewerAutomationPeer.cs
- AutomationPropertyInfo.cs
- SafeFreeMibTable.cs
- DateTimePicker.cs
- AuthenticationModuleElement.cs
- TextRunProperties.cs
- ServerIdentity.cs
- LabelDesigner.cs
- GuidTagList.cs
- PrintPreviewControl.cs
- WorkflowCompensationBehavior.cs
- WebPartConnectionsCancelVerb.cs
- SharedHttpTransportManager.cs
- NativeCppClassAttribute.cs
- QilIterator.cs
- StringExpressionSet.cs
- PresentationSource.cs
- GrowingArray.cs
- FlowThrottle.cs
- DocumentPageHost.cs
- RequestResponse.cs
- HitTestWithPointDrawingContextWalker.cs
- FormViewInsertedEventArgs.cs
- Attributes.cs
- TagPrefixInfo.cs
- BaseDataList.cs
- SynchronizedReadOnlyCollection.cs
- DataGridView.cs
- WeakKeyDictionary.cs
- SrgsNameValueTag.cs
- BulletedListEventArgs.cs
- ExpressionLink.cs
- ErrorTableItemStyle.cs
- RegistryKey.cs
- SQLInt16.cs
- ToolboxBitmapAttribute.cs
- FilteredAttributeCollection.cs
- TextTreeObjectNode.cs
- UrlUtility.cs
- FtpRequestCacheValidator.cs
- SelectionPattern.cs