Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / ComponentModel / Design / Serialization / DesignerLoader.cs / 1 / DesignerLoader.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.ComponentModel.Design.Serialization { using System; using System.Reflection; using System.Security.Permissions; ////// DesignerLoader. This class is responsible for loading a designer document. /// Where and how this load occurs is a private matter for the designer loader. /// The designer loader will be handed to an IDesignerHost instance. This instance, /// when it is ready to load the document, will call BeginLoad, passing an instance /// of IDesignerLoaderHost. The designer loader will load up the design surface /// using the host interface, and call EndLoad on the interface when it is done. /// The error collection passed into EndLoad should be empty or null to indicate a /// successful load, or it should contain a collection of exceptions that /// describe the error. /// /// Once a document is loaded, the designer loader is also responsible for /// writing any changes made to the document back whatever storage the /// loader used when loading the document. /// [HostProtection(SharedState = true)] [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name = "FullTrust")] [System.Runtime.InteropServices.ComVisible(true)] public abstract class DesignerLoader { ////// Returns true when the designer is in the process of loading. Clients that are /// sinking notifications from the designer often want to ignore them while the desingner is loading /// and only respond to them if they result from user interatcions. /// public virtual bool Loading { get { return false; } } ////// Called by the designer host to begin the loading process. The designer /// host passes in an instance of a designer loader host (which is typically /// the same object as the designer host. This loader host allows /// the designer loader to reload the design document and also allows /// the designer loader to indicate that it has finished loading the /// design document. /// public abstract void BeginLoad(IDesignerLoaderHost host); ////// Disposes this designer loader. The designer host will call this method /// when the design document itself is being destroyed. Once called, the /// designer loader will never be called again. /// public abstract void Dispose(); ////// The designer host will call this periodically when it wants to /// ensure that any changes that have been made to the document /// have been saved by the designer loader. This method allows /// designer loaders to implement a lazy-write scheme to improve /// performance. The default implementation does nothing. /// public virtual void Flush() {} } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Point4DValueSerializer.cs
- PropertyNames.cs
- SHA1CryptoServiceProvider.cs
- InternalTypeHelper.cs
- ClientType.cs
- XmlSchemaGroupRef.cs
- TaskFactory.cs
- TypeDelegator.cs
- SoapMessage.cs
- QueryTreeBuilder.cs
- SqlDataSourceCustomCommandPanel.cs
- InvalidOperationException.cs
- TextHintingModeValidation.cs
- ToolStripMenuItemCodeDomSerializer.cs
- SqlServer2KCompatibilityAnnotation.cs
- XmlName.cs
- AccessorTable.cs
- __ComObject.cs
- TrustManagerMoreInformation.cs
- RtType.cs
- VisualTreeUtils.cs
- SplayTreeNode.cs
- UniqueIdentifierService.cs
- WmpBitmapDecoder.cs
- WSSecureConversationDec2005.cs
- TextAnchor.cs
- EntityStoreSchemaGenerator.cs
- Rotation3DAnimation.cs
- OleDbStruct.cs
- CleanUpVirtualizedItemEventArgs.cs
- SizeAnimationBase.cs
- AbstractExpressions.cs
- SchemaNamespaceManager.cs
- DisableDpiAwarenessAttribute.cs
- DataStreamFromComStream.cs
- ResourceContainer.cs
- ZipIOEndOfCentralDirectoryBlock.cs
- EdmError.cs
- RangeValuePattern.cs
- TextBoxView.cs
- DescendantQuery.cs
- DoubleAnimation.cs
- SizeFConverter.cs
- Translator.cs
- _CacheStreams.cs
- SerializerProvider.cs
- SqlDataSourceQueryEditor.cs
- SerialPinChanges.cs
- ProfileElement.cs
- FlowDocumentScrollViewer.cs
- StringSource.cs
- COM2IVsPerPropertyBrowsingHandler.cs
- SerializerProvider.cs
- ResourceSet.cs
- DPAPIProtectedConfigurationProvider.cs
- SelectionPatternIdentifiers.cs
- IntSecurity.cs
- XmlSchemaElement.cs
- TreeBuilder.cs
- Viewport3DAutomationPeer.cs
- DynamicUpdateCommand.cs
- DashStyle.cs
- TextEditorTyping.cs
- ResourceDefaultValueAttribute.cs
- Line.cs
- EntityTypeEmitter.cs
- _IPv4Address.cs
- IncrementalReadDecoders.cs
- MessageEnumerator.cs
- SequentialActivityDesigner.cs
- ProxyAttribute.cs
- DataTableMapping.cs
- XslCompiledTransform.cs
- InvalidComObjectException.cs
- DesignerDataStoredProcedure.cs
- SoapExtensionImporter.cs
- SqlFactory.cs
- MatrixTransform3D.cs
- ButtonFieldBase.cs
- DecimalKeyFrameCollection.cs
- XMLSyntaxException.cs
- XmlStreamStore.cs
- ReaderOutput.cs
- COM2Enum.cs
- ConnectionPoolManager.cs
- RectAnimation.cs
- AsymmetricSecurityBindingElement.cs
- FixedSOMPage.cs
- SqlStream.cs
- XmlSerializationGeneratedCode.cs
- SmiEventSink_Default.cs
- VersionValidator.cs
- ExpressionEditor.cs
- AnimatedTypeHelpers.cs
- ExtensionWindowResizeGrip.cs
- HttpDebugHandler.cs
- HttpModulesSection.cs
- DataGridViewCellStateChangedEventArgs.cs
- OrthographicCamera.cs
- EdmMember.cs