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
- PopupRootAutomationPeer.cs
- XmlAggregates.cs
- SafeWaitHandle.cs
- XmlWhitespace.cs
- HybridWebProxyFinder.cs
- RangeBase.cs
- HttpCacheVaryByContentEncodings.cs
- MatrixUtil.cs
- ParameterCollection.cs
- TypeConstant.cs
- _FtpControlStream.cs
- MethodCallExpression.cs
- validationstate.cs
- UIntPtr.cs
- Clipboard.cs
- XPathAncestorIterator.cs
- TaiwanCalendar.cs
- DateTimeParse.cs
- Rules.cs
- connectionpool.cs
- DispatcherSynchronizationContext.cs
- WebPartConnection.cs
- PolyQuadraticBezierSegment.cs
- Token.cs
- EntityDataSourceMemberPath.cs
- IdleTimeoutMonitor.cs
- TableDetailsCollection.cs
- CompilationSection.cs
- Container.cs
- DataGridHyperlinkColumn.cs
- DisplayInformation.cs
- DocumentViewerBase.cs
- SocketInformation.cs
- BlockUIContainer.cs
- SpellerHighlightLayer.cs
- sqlmetadatafactory.cs
- SmtpReplyReaderFactory.cs
- MatchingStyle.cs
- InfiniteTimeSpanConverter.cs
- XmlSchemaSequence.cs
- TextCharacters.cs
- HashAlgorithm.cs
- DefaultBinder.cs
- DebuggerAttributes.cs
- AnyReturnReader.cs
- XhtmlBasicLabelAdapter.cs
- TrackingWorkflowEventArgs.cs
- DataBinder.cs
- HitTestDrawingContextWalker.cs
- ProfileSettings.cs
- Serializer.cs
- BufferBuilder.cs
- LinkedList.cs
- AdapterSwitches.cs
- NativeRightsManagementAPIsStructures.cs
- DiscardableAttribute.cs
- Debug.cs
- UserPreferenceChangedEventArgs.cs
- IODescriptionAttribute.cs
- MatrixTransform3D.cs
- ThreadSafeList.cs
- RegexCharClass.cs
- ResXResourceReader.cs
- XmlSchemaSet.cs
- EdmProperty.cs
- LocalFileSettingsProvider.cs
- RegexCode.cs
- Part.cs
- PropertyChangedEventManager.cs
- SafeBitVector32.cs
- BaseAddressPrefixFilterElement.cs
- Int16AnimationBase.cs
- JsonWriter.cs
- SchemaCollectionCompiler.cs
- DateTimeConstantAttribute.cs
- BCryptHashAlgorithm.cs
- DesignerDataParameter.cs
- PtsPage.cs
- WindowsImpersonationContext.cs
- CodeDomSerializer.cs
- HMACSHA256.cs
- ProfileModule.cs
- ProviderCollection.cs
- mediaeventshelper.cs
- Debug.cs
- BitmapMetadataEnumerator.cs
- DataGridViewCellCollection.cs
- ScrollChangedEventArgs.cs
- DataGridViewDataErrorEventArgs.cs
- InvalidPropValue.cs
- ChannelDemuxer.cs
- ClientProxyGenerator.cs
- SymbolPair.cs
- DesignerObjectListAdapter.cs
- SafeArchiveContext.cs
- ImageCodecInfo.cs
- TextOnlyOutput.cs
- ParseElementCollection.cs
- Registry.cs
- ToggleProviderWrapper.cs