Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- CollectionDataContractAttribute.cs
- SpeechRecognizer.cs
- ArrangedElement.cs
- XPathException.cs
- TriggerBase.cs
- AdornerDecorator.cs
- FactoryGenerator.cs
- XmlBoundElement.cs
- SQLMoney.cs
- HttpRuntime.cs
- WindowsListViewGroupSubsetLink.cs
- AuthStoreRoleProvider.cs
- BitmapEffectvisualstate.cs
- MetaForeignKeyColumn.cs
- EntityDataSourceEntityTypeFilterConverter.cs
- QueryException.cs
- PreviewControlDesigner.cs
- CreateUserWizardStep.cs
- XmlSchemaGroup.cs
- ListSourceHelper.cs
- ScalarRestriction.cs
- DataSourceCache.cs
- ZipIOZip64EndOfCentralDirectoryBlock.cs
- GAC.cs
- AsymmetricAlgorithm.cs
- Polyline.cs
- RawStylusInputReport.cs
- WSSecureConversationFeb2005.cs
- DocumentSequenceHighlightLayer.cs
- UIPermission.cs
- DataGridViewCellMouseEventArgs.cs
- GeometryHitTestParameters.cs
- Int32AnimationUsingKeyFrames.cs
- Visual3D.cs
- HitTestParameters3D.cs
- DifferencingCollection.cs
- MetadataFile.cs
- DispatchWrapper.cs
- RecognitionEventArgs.cs
- DoubleAnimationBase.cs
- RSACryptoServiceProvider.cs
- ItemsControlAutomationPeer.cs
- RSAOAEPKeyExchangeDeformatter.cs
- SwitchElementsCollection.cs
- SecurityCriticalDataForSet.cs
- SQLInt16Storage.cs
- DynamicILGenerator.cs
- MappingException.cs
- SetterBase.cs
- ExpressionHelper.cs
- InfoCardCryptoHelper.cs
- PackageDigitalSignatureManager.cs
- WindowShowOrOpenTracker.cs
- WebServiceTypeData.cs
- PersonalizationStateQuery.cs
- _NetworkingPerfCounters.cs
- WmlPhoneCallAdapter.cs
- AsyncCallback.cs
- DiscoveryVersion.cs
- WebPartMenuStyle.cs
- WeakEventTable.cs
- EventLogWatcher.cs
- IdentityManager.cs
- StringInfo.cs
- WindowsFormsSynchronizationContext.cs
- BamlCollectionHolder.cs
- EntityContainer.cs
- DataKeyCollection.cs
- ArcSegment.cs
- HtmlTableRowCollection.cs
- handlecollector.cs
- ScopelessEnumAttribute.cs
- MatchAttribute.cs
- WinEventTracker.cs
- PriorityQueue.cs
- NetSectionGroup.cs
- TableRow.cs
- ISO2022Encoding.cs
- CompletionBookmark.cs
- StdValidatorsAndConverters.cs
- PhotoPrintingIntent.cs
- Helpers.cs
- ExpandedWrapper.cs
- AtomServiceDocumentSerializer.cs
- MemberInfoSerializationHolder.cs
- SqlTypesSchemaImporter.cs
- GeneralTransform3DTo2DTo3D.cs
- StateElement.cs
- MetafileHeaderWmf.cs
- ReadOnlyCollection.cs
- ContextStaticAttribute.cs
- newinstructionaction.cs
- ListItemConverter.cs
- TableCell.cs
- TableItemProviderWrapper.cs
- TableLayout.cs
- AsymmetricKeyExchangeFormatter.cs
- CodeAccessPermission.cs
- CompositeScriptReference.cs
- SamlConditions.cs