Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / ComponentModel / Design / Serialization / SerializationStore.cs / 1305376 / 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
- LinqDataSourceEditData.cs
- RegionInfo.cs
- HelloMessageCD1.cs
- CompositeFontParser.cs
- Socket.cs
- DataGridViewAdvancedBorderStyle.cs
- DetailsViewCommandEventArgs.cs
- localization.cs
- TimelineCollection.cs
- DateTimeFormat.cs
- DispatcherEventArgs.cs
- CatalogPartChrome.cs
- ValuePattern.cs
- XmlToDatasetMap.cs
- AppSecurityManager.cs
- TextFragmentEngine.cs
- InvalidEnumArgumentException.cs
- MethodBody.cs
- ReachSerializationUtils.cs
- EnumerableWrapperWeakToStrong.cs
- StrokeCollection2.cs
- OuterGlowBitmapEffect.cs
- EditingScope.cs
- EventProviderWriter.cs
- DemultiplexingClientMessageFormatter.cs
- DesignerSerializationOptionsAttribute.cs
- GridViewRow.cs
- CurrencyManager.cs
- MultitargetingHelpers.cs
- HtmlInputHidden.cs
- _Rfc2616CacheValidators.cs
- Message.cs
- QueryAccessibilityHelpEvent.cs
- PropertyEmitter.cs
- SelectionWordBreaker.cs
- TreeIterator.cs
- ConsoleCancelEventArgs.cs
- ConfigurationErrorsException.cs
- XmlStreamStore.cs
- SessionEndedEventArgs.cs
- ImportCatalogPart.cs
- SelectionItemProviderWrapper.cs
- IisTraceListener.cs
- IFlowDocumentViewer.cs
- IEnumerable.cs
- ValidatorUtils.cs
- ListControl.cs
- Iis7Helper.cs
- TypeReference.cs
- PageCache.cs
- SymbolEqualComparer.cs
- DataGridSortingEventArgs.cs
- PageAsyncTask.cs
- RealProxy.cs
- PeerNearMe.cs
- CapabilitiesAssignment.cs
- ParallelTimeline.cs
- EmbeddedMailObject.cs
- SourceFileInfo.cs
- CompilationUnit.cs
- DeadCharTextComposition.cs
- MessagePropertyAttribute.cs
- HelpInfo.cs
- PathNode.cs
- WindowProviderWrapper.cs
- XmlSchemaIdentityConstraint.cs
- PathGeometry.cs
- DataGridToolTip.cs
- LinqToSqlWrapper.cs
- CodeLabeledStatement.cs
- ScriptHandlerFactory.cs
- ExcCanonicalXml.cs
- Aggregates.cs
- NominalTypeEliminator.cs
- FixedPosition.cs
- TreeViewHitTestInfo.cs
- RegexTree.cs
- UTF8Encoding.cs
- ProxyWebPartManager.cs
- PrintDialogDesigner.cs
- ObjectDataSource.cs
- XsltException.cs
- EmptyStringExpandableObjectConverter.cs
- UpdateTranslator.cs
- SoapHttpTransportImporter.cs
- VBIdentifierNameEditor.cs
- Function.cs
- DateTimeFormatInfo.cs
- HMACSHA1.cs
- InOutArgument.cs
- DefaultMemberAttribute.cs
- NullableFloatMinMaxAggregationOperator.cs
- DecoratedNameAttribute.cs
- ConfigLoader.cs
- FrugalList.cs
- XmlSchemaSimpleContentExtension.cs
- Propagator.JoinPropagator.JoinPredicateVisitor.cs
- DefaultObjectMappingItemCollection.cs
- GridViewDeletedEventArgs.cs
- SettingsPropertyValue.cs