Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / 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); } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Fonts.cs
- OracleCommand.cs
- EmptyTextWriter.cs
- ListView.cs
- ToolStripDropDownMenu.cs
- StreamInfo.cs
- PropertySourceInfo.cs
- StrokeNode.cs
- ParallelLoopState.cs
- Panel.cs
- ProcessProtocolHandler.cs
- _NegotiateClient.cs
- DataObjectEventArgs.cs
- MessagingDescriptionAttribute.cs
- SmiEventSink_DeferedProcessing.cs
- SymLanguageType.cs
- SafeRegistryHandle.cs
- EasingQuaternionKeyFrame.cs
- COM2Properties.cs
- SurrogateEncoder.cs
- WCFModelStrings.Designer.cs
- CompilerTypeWithParams.cs
- UIElementPropertyUndoUnit.cs
- TextDecorationLocationValidation.cs
- ContainerControlDesigner.cs
- XhtmlBasicCommandAdapter.cs
- BaseConfigurationRecord.cs
- Panel.cs
- DoWorkEventArgs.cs
- DesignerActionHeaderItem.cs
- PrtCap_Public.cs
- GlobalizationSection.cs
- ChangePasswordAutoFormat.cs
- Privilege.cs
- XmlConvert.cs
- HatchBrush.cs
- HeaderUtility.cs
- InputReport.cs
- EventData.cs
- SqlConnectionFactory.cs
- RepeaterItemEventArgs.cs
- ConnectionInterfaceCollection.cs
- ModelPropertyCollectionImpl.cs
- ToolStripSeparatorRenderEventArgs.cs
- WebAdminConfigurationHelper.cs
- DoubleCollectionConverter.cs
- CreateUserWizardStep.cs
- RoleServiceManager.cs
- Rect3D.cs
- SqlInfoMessageEvent.cs
- DesignOnlyAttribute.cs
- ValidatorCompatibilityHelper.cs
- Workspace.cs
- QueryPageSettingsEventArgs.cs
- XmlDataDocument.cs
- UriScheme.cs
- InternalRelationshipCollection.cs
- RelatedImageListAttribute.cs
- xmlsaver.cs
- TypeLoader.cs
- TextDecorationLocationValidation.cs
- StylusPlugin.cs
- ServiceManager.cs
- ShapingEngine.cs
- DataGridViewComboBoxColumn.cs
- TextDecorationCollectionConverter.cs
- HttpPostedFile.cs
- ISFTagAndGuidCache.cs
- EventProviderWriter.cs
- TraceFilter.cs
- _ConnectOverlappedAsyncResult.cs
- TcpWorkerProcess.cs
- SafeFindHandle.cs
- FileSystemWatcher.cs
- BinaryFormatter.cs
- MergeLocalizationDirectives.cs
- ACE.cs
- ProxyWebPart.cs
- SymLanguageType.cs
- FunctionImportMapping.cs
- DocumentsTrace.cs
- GC.cs
- DocumentViewerAutomationPeer.cs
- DataIdProcessor.cs
- ProtectedProviderSettings.cs
- SpStreamWrapper.cs
- BuildProvidersCompiler.cs
- BypassElement.cs
- DrawingContextDrawingContextWalker.cs
- TreeNodeConverter.cs
- UniqueConstraint.cs
- _NetRes.cs
- GridViewColumnCollectionChangedEventArgs.cs
- DataObject.cs
- DynamicEndpointElement.cs
- DictionaryContent.cs
- CodeGroup.cs
- Part.cs
- SmtpSpecifiedPickupDirectoryElement.cs
- WorkingDirectoryEditor.cs