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
- Size.cs
- GuidConverter.cs
- SqlConnectionFactory.cs
- dtdvalidator.cs
- ObjectSecurity.cs
- EventLogTraceListener.cs
- ApplicationHost.cs
- HtmlContainerControl.cs
- SoundPlayerAction.cs
- MailBnfHelper.cs
- JsonStringDataContract.cs
- DataServiceRequest.cs
- PersonalizationProvider.cs
- UnmanagedMemoryStream.cs
- WebPartActionVerb.cs
- MapPathBasedVirtualPathProvider.cs
- ThousandthOfEmRealPoints.cs
- StrokeCollection2.cs
- OpCopier.cs
- DataServiceRequestException.cs
- FormsAuthenticationUser.cs
- cookieexception.cs
- Encoder.cs
- OdbcException.cs
- StreamSecurityUpgradeInitiator.cs
- OdbcStatementHandle.cs
- HostProtectionPermission.cs
- HMACMD5.cs
- EntityDataSourceEntitySetNameItem.cs
- DataServiceContext.cs
- _ListenerAsyncResult.cs
- DockAndAnchorLayout.cs
- ExtensibleClassFactory.cs
- SQLDouble.cs
- TranslateTransform.cs
- SystemEvents.cs
- CreateUserWizard.cs
- StateMachine.cs
- ComAdminInterfaces.cs
- DrawingGroupDrawingContext.cs
- EncodingDataItem.cs
- HttpCacheVary.cs
- DictionaryContent.cs
- TextComposition.cs
- LoadedOrUnloadedOperation.cs
- CodeArgumentReferenceExpression.cs
- DeferredElementTreeState.cs
- PropertyPushdownHelper.cs
- HtmlHead.cs
- PresentationAppDomainManager.cs
- NavigationProperty.cs
- StoreContentChangedEventArgs.cs
- TextRangeBase.cs
- EntityTransaction.cs
- ElementHostAutomationPeer.cs
- ConstNode.cs
- FailedToStartupUIException.cs
- CLRBindingWorker.cs
- PersonalizableTypeEntry.cs
- LiteralTextParser.cs
- TextTreeRootTextBlock.cs
- WebCategoryAttribute.cs
- Token.cs
- columnmapkeybuilder.cs
- PersonalizationProviderCollection.cs
- XamlContextStack.cs
- ScriptingJsonSerializationSection.cs
- SmtpReplyReader.cs
- MsmqTransportSecurity.cs
- NativeMethods.cs
- EventManager.cs
- XmlSchemaSimpleContentExtension.cs
- DataGridViewAutoSizeColumnsModeEventArgs.cs
- BaseProcessor.cs
- WebPartVerb.cs
- TrustSection.cs
- DecimalStorage.cs
- LocalFileSettingsProvider.cs
- TextBoxRenderer.cs
- UnhandledExceptionEventArgs.cs
- PersianCalendar.cs
- FolderLevelBuildProvider.cs
- ContextMenu.cs
- RealizedColumnsBlock.cs
- PackagePart.cs
- WebPartEditorOkVerb.cs
- DataGridViewRowEventArgs.cs
- ObjectManager.cs
- SimpleWebHandlerParser.cs
- ExpressionDumper.cs
- StrongNamePublicKeyBlob.cs
- SkinBuilder.cs
- EventSetterHandlerConverter.cs
- Assembly.cs
- Calendar.cs
- ProfilePropertyNameValidator.cs
- XPathAxisIterator.cs
- ConfigXmlSignificantWhitespace.cs
- SlipBehavior.cs
- DBPropSet.cs