Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / TransactionBridge / Microsoft / Transactions / Wsat / Recovery / LogEntryDeserializer.cs / 1 / LogEntryDeserializer.cs
//------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- // This file contains the abstract base class for all log entry deserializers using System; using System.IO; using System.ServiceModel; using System.Xml; using Microsoft.Transactions.Wsat.Messaging; using Microsoft.Transactions.Wsat.Protocol; namespace Microsoft.Transactions.Wsat.Recovery { abstract class LogEntryDeserializer { protected MemoryStream mem; protected LogEntry entry; protected LogEntryDeserializer(MemoryStream mem, LogEntry entry) { this.entry = entry; this.mem = mem; } protected abstract void DeserializeExtended(); public LogEntry Deserialize() { DeserializeExtended(); return this.entry; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- __ConsoleStream.cs
- DataGridViewRowPrePaintEventArgs.cs
- TypeConverters.cs
- PropertyInformation.cs
- GenericIdentity.cs
- PrivacyNoticeElement.cs
- ResourceReferenceExpressionConverter.cs
- UpdateTracker.cs
- VScrollBar.cs
- CheckBoxStandardAdapter.cs
- AsyncStreamReader.cs
- PathSegment.cs
- DeferredSelectedIndexReference.cs
- CellTreeNodeVisitors.cs
- WebPartCatalogCloseVerb.cs
- ObjectSpanRewriter.cs
- HttpCachePolicyElement.cs
- ScriptResourceHandler.cs
- UshortList2.cs
- PartialToken.cs
- Stack.cs
- HttpInputStream.cs
- RuntimeEnvironment.cs
- WsdlInspector.cs
- InternalDispatchObject.cs
- XmlSchemaChoice.cs
- OletxCommittableTransaction.cs
- ListViewInsertEventArgs.cs
- FixedStringLookup.cs
- CounterCreationData.cs
- TransformProviderWrapper.cs
- TableDetailsCollection.cs
- OperationAbortedException.cs
- StorageInfo.cs
- ScriptControlDescriptor.cs
- Tile.cs
- _DisconnectOverlappedAsyncResult.cs
- WebPartUtil.cs
- WebPartMinimizeVerb.cs
- SettingsSavedEventArgs.cs
- RequestQueryProcessor.cs
- DbConnectionClosed.cs
- PersonalizationProvider.cs
- SettingsAttributeDictionary.cs
- TextParagraphView.cs
- RsaEndpointIdentity.cs
- ResumeStoryboard.cs
- RoleManagerEventArgs.cs
- ProcessModelInfo.cs
- SmtpReplyReader.cs
- SymbolMethod.cs
- Exceptions.cs
- JsonReader.cs
- TokenizerHelper.cs
- SafeEventLogReadHandle.cs
- PropertyInfo.cs
- DetailsViewModeEventArgs.cs
- SEHException.cs
- XamlStackWriter.cs
- TextSerializer.cs
- CompositeTypefaceMetrics.cs
- OdbcEnvironmentHandle.cs
- NotSupportedException.cs
- InheritablePropertyChangeInfo.cs
- XamlReader.cs
- GeneralTransform2DTo3D.cs
- SqlClientWrapperSmiStream.cs
- RichTextBoxConstants.cs
- TextViewBase.cs
- Pair.cs
- XmlSchemaParticle.cs
- HotSpot.cs
- FixedSchema.cs
- TextWriterTraceListener.cs
- TextAnchor.cs
- Menu.cs
- DataSourceControlBuilder.cs
- _ConnectionGroup.cs
- ServiceEndpointElement.cs
- ClientFormsAuthenticationCredentials.cs
- BrushConverter.cs
- FormConverter.cs
- SizeAnimationUsingKeyFrames.cs
- ValidationEventArgs.cs
- KeyboardNavigation.cs
- TextEditorSpelling.cs
- ConnectionConsumerAttribute.cs
- CatalogZone.cs
- ClientFormsIdentity.cs
- Visual3D.cs
- TimersDescriptionAttribute.cs
- PerformanceCounterLib.cs
- StatusStrip.cs
- mansign.cs
- LOSFormatter.cs
- TextSpan.cs
- PointKeyFrameCollection.cs
- SpecialFolderEnumConverter.cs
- SelectionRange.cs
- RequestDescription.cs