Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- XmlBinaryReader.cs
- GeometryCombineModeValidation.cs
- SystemDropShadowChrome.cs
- MetricEntry.cs
- EventData.cs
- ProfileGroupSettingsCollection.cs
- DataException.cs
- EntityDataSourceWizardForm.cs
- util.cs
- ConfigurationFileMap.cs
- MarginCollapsingState.cs
- RoleService.cs
- GroupByExpressionRewriter.cs
- FragmentNavigationEventArgs.cs
- ActivityTrace.cs
- Item.cs
- HeaderUtility.cs
- WebBrowserSiteBase.cs
- FreeIndexList.cs
- GridEntryCollection.cs
- XNodeValidator.cs
- SecurityAttributeGenerationHelper.cs
- HttpPostLocalhostServerProtocol.cs
- GenericWebPart.cs
- AggregateNode.cs
- StickyNote.cs
- ListBoxItemAutomationPeer.cs
- MobileCapabilities.cs
- CriticalFinalizerObject.cs
- ColorTransformHelper.cs
- BufferedGraphics.cs
- DetailsViewUpdateEventArgs.cs
- EntityDataSourceDesigner.cs
- EncoderNLS.cs
- ComPlusInstanceContextInitializer.cs
- DragSelectionMessageFilter.cs
- DataGridViewRowHeaderCell.cs
- ZoneLinkButton.cs
- OdbcPermission.cs
- ProcessProtocolHandler.cs
- ValidatorCompatibilityHelper.cs
- Config.cs
- oledbmetadatacollectionnames.cs
- WindowsFormsHelpers.cs
- AncestorChangedEventArgs.cs
- HyperLink.cs
- ZipIOExtraField.cs
- XPathNode.cs
- ConnectionManagementElement.cs
- TableCell.cs
- SafeFindHandle.cs
- SqlTypesSchemaImporter.cs
- EditorAttribute.cs
- RegexNode.cs
- BuildProviderCollection.cs
- RequestCacheEntry.cs
- ValueQuery.cs
- DocumentsTrace.cs
- InlinedAggregationOperatorEnumerator.cs
- EndpointConfigContainer.cs
- SecurityDocument.cs
- XamlFilter.cs
- DefaultTraceListener.cs
- ErrorHandler.cs
- ObjectResult.cs
- AmbientProperties.cs
- ListDictionary.cs
- RootProfilePropertySettingsCollection.cs
- UniqueEventHelper.cs
- PolygonHotSpot.cs
- UnconditionalPolicy.cs
- streamingZipPartStream.cs
- EventDescriptor.cs
- WasHostedComPlusFactory.cs
- LinqDataSourceView.cs
- ClientScriptManagerWrapper.cs
- ModuleBuilderData.cs
- DrawingBrush.cs
- ContainerActivationHelper.cs
- CellIdBoolean.cs
- WorkflowControlEndpoint.cs
- Zone.cs
- SessionStateContainer.cs
- BinHexEncoding.cs
- SqlClientFactory.cs
- ListCommandEventArgs.cs
- TreeViewEvent.cs
- mil_sdk_version.cs
- UserControlCodeDomTreeGenerator.cs
- CultureInfo.cs
- TrackBarDesigner.cs
- ClientRoleProvider.cs
- AssemblyCollection.cs
- TranslateTransform3D.cs
- PhysicalAddress.cs
- Stack.cs
- regiisutil.cs
- XmlSchemaAnnotation.cs
- EventDescriptor.cs
- ListItemCollection.cs