Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / WebParts / WebPartManagerInternals.cs / 1 / WebPartManagerInternals.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls.WebParts { using System; using System.Security.Permissions; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class WebPartManagerInternals { private WebPartManager _manager; internal WebPartManagerInternals(WebPartManager manager) { _manager = manager; } public void AddWebPart(WebPart webPart) { _manager.AddWebPart(webPart); } public void CallOnClosing(WebPart webPart) { webPart.OnClosing(EventArgs.Empty); } public void CallOnConnectModeChanged(WebPart webPart) { webPart.OnConnectModeChanged(EventArgs.Empty); } public void CallOnDeleting(WebPart webPart) { webPart.OnDeleting(EventArgs.Empty); } public void CallOnEditModeChanged(WebPart webPart) { webPart.OnEditModeChanged(EventArgs.Empty); } public object CreateObjectFromType(Type type) { return WebPartUtil.CreateObjectFromType(type); } public bool ConnectionDeleted(WebPartConnection connection) { return connection.Deleted; } public void DeleteConnection(WebPartConnection connection) { connection.Deleted = true; } public string GetZoneID(WebPart webPart) { return webPart.ZoneID; } public void LoadConfigurationState(WebPartTransformer transformer, object savedState) { transformer.LoadConfigurationState(savedState); } public void RemoveWebPart(WebPart webPart) { _manager.RemoveWebPart(webPart); } public object SaveConfigurationState(WebPartTransformer transformer) { return transformer.SaveConfigurationState(); } public void SetConnectErrorMessage(WebPart webPart, string connectErrorMessage) { webPart.SetConnectErrorMessage(connectErrorMessage); } public void SetHasUserData(WebPart webPart, bool hasUserData) { webPart.SetHasUserData(hasUserData); } public void SetHasSharedData(WebPart webPart, bool hasSharedData) { webPart.SetHasSharedData(hasSharedData); } public void SetIsClosed(WebPart webPart, bool isClosed) { webPart.SetIsClosed(isClosed); } public void SetIsShared(WebPartConnection connection, bool isShared) { connection.SetIsShared(isShared); } public void SetIsShared(WebPart webPart, bool isShared) { webPart.SetIsShared(isShared); } public void SetIsStandalone(WebPart webPart, bool isStandalone) { webPart.SetIsStandalone(isStandalone); } public void SetIsStatic(WebPartConnection connection, bool isStatic) { connection.SetIsStatic(isStatic); } public void SetIsStatic(WebPart webPart, bool isStatic) { webPart.SetIsStatic(isStatic); } public void SetTransformer(WebPartConnection connection, WebPartTransformer transformer) { connection.SetTransformer(transformer); } public void SetZoneID(WebPart webPart, string zoneID) { webPart.ZoneID = zoneID; } public void SetZoneIndex(WebPart webPart, int zoneIndex) { webPart.SetZoneIndex(zoneIndex); } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- PageRequestManager.cs
- ConfigurationPropertyAttribute.cs
- XomlCompilerResults.cs
- MultitargetingHelpers.cs
- RemoteX509AsymmetricSecurityKey.cs
- SmiMetaData.cs
- HtmlMeta.cs
- Drawing.cs
- DataGridViewRowStateChangedEventArgs.cs
- TripleDES.cs
- _KerberosClient.cs
- ParserContext.cs
- ReferenceCountedObject.cs
- ColumnClickEvent.cs
- DataSet.cs
- OperationParameterInfo.cs
- XmlSerializerAssemblyAttribute.cs
- GeometryModel3D.cs
- SimpleTableProvider.cs
- TraceContext.cs
- ConfigurationStrings.cs
- CellQuery.cs
- EllipseGeometry.cs
- HostAdapter.cs
- TextOutput.cs
- SessionSymmetricTransportSecurityProtocolFactory.cs
- ExpressionBuilder.cs
- EditorPart.cs
- DesignerValidatorAdapter.cs
- WinInet.cs
- ExtensionSurface.cs
- XmlTextEncoder.cs
- BezierSegment.cs
- Console.cs
- BindingObserver.cs
- RawStylusInputCustomDataList.cs
- StorageRoot.cs
- HtmlForm.cs
- PrimitiveXmlSerializers.cs
- IMembershipProvider.cs
- StrokeCollectionDefaultValueFactory.cs
- SerializerWriterEventHandlers.cs
- ConfigurationSection.cs
- ComplexObject.cs
- HttpFileCollection.cs
- ExpandCollapsePattern.cs
- _TransmitFileOverlappedAsyncResult.cs
- ProcessInputEventArgs.cs
- CheckBoxBaseAdapter.cs
- RoleManagerSection.cs
- SQLResource.cs
- FixedLineResult.cs
- ExtractorMetadata.cs
- JsonEnumDataContract.cs
- InputBuffer.cs
- ExceptionHandler.cs
- FlatButtonAppearance.cs
- HandledMouseEvent.cs
- Propagator.JoinPropagator.cs
- Compilation.cs
- EnumType.cs
- FlowNode.cs
- PropertyGeneratedEventArgs.cs
- ViewSimplifier.cs
- SqlCacheDependencySection.cs
- Type.cs
- WebPartConnectionCollection.cs
- TextAdaptor.cs
- AssertFilter.cs
- XPathNavigator.cs
- AndCondition.cs
- ReachIDocumentPaginatorSerializerAsync.cs
- MatrixAnimationUsingKeyFrames.cs
- UpdatePanelControlTrigger.cs
- ApplicationBuildProvider.cs
- MeshGeometry3D.cs
- Empty.cs
- XDRSchema.cs
- GridEntryCollection.cs
- DiffuseMaterial.cs
- XmlNodeReader.cs
- BuildManager.cs
- GeometryModel3D.cs
- FixedSOMPageConstructor.cs
- SqlConnectionPoolGroupProviderInfo.cs
- IntPtr.cs
- SymbolTable.cs
- FamilyTypeface.cs
- QueryCacheManager.cs
- CompModHelpers.cs
- SpeechRecognitionEngine.cs
- ComNativeDescriptor.cs
- XmlTextEncoder.cs
- CompoundFileStreamReference.cs
- Int32CAMarshaler.cs
- TagPrefixAttribute.cs
- StringTraceRecord.cs
- ApplicationInfo.cs
- AddInControllerImpl.cs
- PersonalizationStateQuery.cs