Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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);
}
}
}
}
// 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.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);
}
}
}
}
// 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
- MessageContractExporter.cs
- SoapEnumAttribute.cs
- Rijndael.cs
- TreeChangeInfo.cs
- AppSettingsExpressionBuilder.cs
- ChtmlCommandAdapter.cs
- ParenthesizePropertyNameAttribute.cs
- QueryCursorEventArgs.cs
- InputProcessorProfiles.cs
- Internal.cs
- Bezier.cs
- CompiledScopeCriteria.cs
- PlatformCulture.cs
- TransformDescriptor.cs
- TreeViewEvent.cs
- SiteOfOriginContainer.cs
- ReflectionHelper.cs
- OraclePermission.cs
- ImageProxy.cs
- DbCommandTree.cs
- Environment.cs
- Control.cs
- FormCollection.cs
- MULTI_QI.cs
- ComPlusInstanceContextInitializer.cs
- AnnotationHighlightLayer.cs
- ProfileBuildProvider.cs
- ColumnMapProcessor.cs
- mediapermission.cs
- WebPartCatalogCloseVerb.cs
- DetailsViewInsertEventArgs.cs
- SiteOfOriginPart.cs
- ItemList.cs
- LocatorPart.cs
- Blend.cs
- WebRequestModulesSection.cs
- COM2ExtendedTypeConverter.cs
- DataColumn.cs
- SchemaExporter.cs
- FormCollection.cs
- ButtonAutomationPeer.cs
- BoundField.cs
- MethodBody.cs
- ReferenceEqualityComparer.cs
- CollectionBuilder.cs
- VerificationException.cs
- SevenBitStream.cs
- TemplateManager.cs
- DataKey.cs
- TextTreeInsertUndoUnit.cs
- LongValidatorAttribute.cs
- SplitterPanel.cs
- MouseButtonEventArgs.cs
- ProgressBarBrushConverter.cs
- SmiEventSink_DeferedProcessing.cs
- NopReturnReader.cs
- LayoutInformation.cs
- SudsWriter.cs
- MarkedHighlightComponent.cs
- StylusPointProperties.cs
- Overlapped.cs
- Path.cs
- TextElementEditingBehaviorAttribute.cs
- SafeNativeMethodsMilCoreApi.cs
- SHA512Managed.cs
- TextTreeInsertUndoUnit.cs
- WindowsAuthenticationEventArgs.cs
- BeginEvent.cs
- ScrollProperties.cs
- MsmqInputChannelListener.cs
- ConfigurationStrings.cs
- ErrorWebPart.cs
- ToolBarPanel.cs
- DecoderFallback.cs
- httpapplicationstate.cs
- NamedPermissionSet.cs
- AttachmentCollection.cs
- TextRenderer.cs
- StorageEndPropertyMapping.cs
- SiteOfOriginContainer.cs
- Binding.cs
- QueryContinueDragEventArgs.cs
- PolicyException.cs
- Control.cs
- MimeWriter.cs
- PriorityBindingExpression.cs
- Configuration.cs
- ButtonColumn.cs
- RangeValidator.cs
- SqlSelectClauseBuilder.cs
- HostProtectionException.cs
- KoreanLunisolarCalendar.cs
- DispatcherSynchronizationContext.cs
- CompositeScriptReference.cs
- AnnotationHelper.cs
- EarlyBoundInfo.cs
- RecognitionEventArgs.cs
- Common.cs
- Crc32.cs
- FontFaceLayoutInfo.cs