Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / CompMod / System / ComponentModel / Design / Serialization / SerializationStore.cs / 1 / SerializationStore.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.ComponentModel.Design.Serialization { using System.Collections; using System.ComponentModel; using System.IO; using System.Security.Permissions; ////// The SerializationStore class is an implementation-specific class that stores /// serialization data for the component serialization service. The /// service adds state to this serialization store. Once the store is /// closed it can be saved to a stream. A serialization store can be /// deserialized at a later date by the same type of serialization service. /// SerializationStore implements the IDisposable interface such that Dispose /// simply calls the Close method. Dispose is implemented as a private /// interface to avoid confusion. The IDisposable pattern is provided /// for languages that support a "using" syntax like C# and VB .NET. /// [HostProtection(SharedState = true)] public abstract class SerializationStore : IDisposable { ////// If there were errors generated during serialization or deserialization of the store, they will be /// added to this collection. /// public abstract ICollection Errors { get; } ////// The Close method closes this store and prevents any objects /// from being serialized into it. Once closed, the serialization store may be saved. /// public abstract void Close(); ////// The Save method saves the store to the given stream. If the store /// is open, Save will automatically close it for you. You /// can call save as many times as you wish to save the store /// to different streams. /// public abstract void Save(Stream stream); ////// Disposes this object by calling the Close method. /// void IDisposable.Dispose() {Dispose(true);} protected virtual void Dispose(bool disposing) { if(disposing) Close(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.ComponentModel.Design.Serialization { using System.Collections; using System.ComponentModel; using System.IO; using System.Security.Permissions; ////// The SerializationStore class is an implementation-specific class that stores /// serialization data for the component serialization service. The /// service adds state to this serialization store. Once the store is /// closed it can be saved to a stream. A serialization store can be /// deserialized at a later date by the same type of serialization service. /// SerializationStore implements the IDisposable interface such that Dispose /// simply calls the Close method. Dispose is implemented as a private /// interface to avoid confusion. The IDisposable pattern is provided /// for languages that support a "using" syntax like C# and VB .NET. /// [HostProtection(SharedState = true)] public abstract class SerializationStore : IDisposable { ////// If there were errors generated during serialization or deserialization of the store, they will be /// added to this collection. /// public abstract ICollection Errors { get; } ////// The Close method closes this store and prevents any objects /// from being serialized into it. Once closed, the serialization store may be saved. /// public abstract void Close(); ////// The Save method saves the store to the given stream. If the store /// is open, Save will automatically close it for you. You /// can call save as many times as you wish to save the store /// to different streams. /// public abstract void Save(Stream stream); ////// Disposes this object by calling the Close method. /// void IDisposable.Dispose() {Dispose(true);} protected virtual void Dispose(bool disposing) { if(disposing) Close(); } } } // 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
- FrameworkObject.cs
- ObjectFactoryCodeDomTreeGenerator.cs
- SqlMethodCallConverter.cs
- DefaultAsyncDataDispatcher.cs
- TextReader.cs
- Stack.cs
- CompositeDataBoundControl.cs
- PathParser.cs
- TemplatePartAttribute.cs
- WindowsIdentity.cs
- QilList.cs
- FileFormatException.cs
- TypeBuilderInstantiation.cs
- TextTreeUndoUnit.cs
- Configuration.cs
- EntityException.cs
- HtmlTableCell.cs
- securitycriticaldataClass.cs
- DataContext.cs
- SpellerInterop.cs
- BamlLocalizableResourceKey.cs
- Soap.cs
- InvalidPrinterException.cs
- Thumb.cs
- DataAdapter.cs
- RegexRunner.cs
- ParentUndoUnit.cs
- FileDialogCustomPlacesCollection.cs
- EraserBehavior.cs
- DispatcherEventArgs.cs
- DataObjectMethodAttribute.cs
- DragSelectionMessageFilter.cs
- DynamicQueryableWrapper.cs
- ServicePointManager.cs
- CompilationPass2Task.cs
- CircleHotSpot.cs
- CompositeDataBoundControl.cs
- PartialCachingControl.cs
- ReferencedAssembly.cs
- SHA384Managed.cs
- BitmapEffectInput.cs
- InputBuffer.cs
- ThicknessKeyFrameCollection.cs
- PropertyInformationCollection.cs
- GroupDescription.cs
- ConstructorBuilder.cs
- XmlDataDocument.cs
- BamlResourceDeserializer.cs
- EdmFunctions.cs
- SQLConvert.cs
- TraceInternal.cs
- MappedMetaModel.cs
- ManipulationStartedEventArgs.cs
- HttpListenerRequest.cs
- ImageAnimator.cs
- KeyPressEvent.cs
- FixedSOMPageElement.cs
- ForceCopyBuildProvider.cs
- ListBoxItemAutomationPeer.cs
- FacetDescriptionElement.cs
- ColorConvertedBitmapExtension.cs
- TextEditor.cs
- BitmapInitialize.cs
- ProtocolState.cs
- XpsFont.cs
- WindowsRebar.cs
- ProtectedConfigurationSection.cs
- ScrollBar.cs
- SyndicationSerializer.cs
- ComplexTypeEmitter.cs
- NativeMethods.cs
- InvalidCommandTreeException.cs
- HttpValueCollection.cs
- CodeCatchClause.cs
- Int32CollectionConverter.cs
- Debug.cs
- ConnectionInterfaceCollection.cs
- TemplateBuilder.cs
- Pen.cs
- BooleanProjectedSlot.cs
- CompilerParameters.cs
- SHA1Managed.cs
- StylusPointPropertyUnit.cs
- SqlParameter.cs
- ParameterRetriever.cs
- TextParaClient.cs
- EdmValidator.cs
- Application.cs
- MemberInfoSerializationHolder.cs
- UnhandledExceptionEventArgs.cs
- Choices.cs
- FixedLineResult.cs
- ExecutedRoutedEventArgs.cs
- LinkedResourceCollection.cs
- DataRow.cs
- UnauthorizedWebPart.cs
- SynchronizationContext.cs
- DependencyPropertyAttribute.cs
- SoapFault.cs
- Logging.cs