Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / tx / System / Transactions / PreparingEnlistment.cs / 1305376 / PreparingEnlistment.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- #define DEMAND_TX_PERM namespace System.Transactions { using System; using System.Diagnostics; using System.Threading; using System.Transactions; using System.Transactions.Diagnostics; public class PreparingEnlistment : Enlistment { internal PreparingEnlistment( InternalEnlistment enlistment ) : base(enlistment) { } public void Prepared() { if ( DiagnosticTrace.Verbose ) { MethodEnteredTraceRecord.Trace( SR.GetString( SR.TraceSourceLtm ), "PreparingEnlistment.Prepared" ); EnlistmentCallbackPositiveTraceRecord.Trace( SR.GetString( SR.TraceSourceLtm ), this.internalEnlistment.EnlistmentTraceId, EnlistmentCallback.Prepared ); } lock( this.internalEnlistment.SyncRoot ) { this.internalEnlistment.State.Prepared( this.internalEnlistment ); } if ( DiagnosticTrace.Verbose ) { MethodExitedTraceRecord.Trace( SR.GetString( SR.TraceSourceLtm ), "PreparingEnlistment.Prepared" ); } } public void ForceRollback() { if ( DiagnosticTrace.Verbose ) { MethodEnteredTraceRecord.Trace( SR.GetString( SR.TraceSourceLtm ), "PreparingEnlistment.ForceRollback" ); } if ( DiagnosticTrace.Warning ) { EnlistmentCallbackNegativeTraceRecord.Trace( SR.GetString( SR.TraceSourceLtm ), this.internalEnlistment.EnlistmentTraceId, EnlistmentCallback.ForceRollback ); } lock( this.internalEnlistment.SyncRoot ) { this.internalEnlistment.State.ForceRollback( this.internalEnlistment, null ); } if ( DiagnosticTrace.Verbose ) { MethodExitedTraceRecord.Trace( SR.GetString( SR.TraceSourceLtm ), "PreparingEnlistment.ForceRollback" ); } } // Changing the e paramater name would be a breaking change for little benefit. [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly")] public void ForceRollback( Exception e ) { if ( DiagnosticTrace.Verbose ) { MethodEnteredTraceRecord.Trace( SR.GetString( SR.TraceSourceLtm ), "PreparingEnlistment.ForceRollback" ); } if ( DiagnosticTrace.Warning ) { EnlistmentCallbackNegativeTraceRecord.Trace( SR.GetString( SR.TraceSourceLtm ), this.internalEnlistment.EnlistmentTraceId, EnlistmentCallback.ForceRollback ); } lock( this.internalEnlistment.SyncRoot ) { this.internalEnlistment.State.ForceRollback( this.internalEnlistment, e ); } if ( DiagnosticTrace.Verbose ) { MethodExitedTraceRecord.Trace( SR.GetString( SR.TraceSourceLtm ), "PreparingEnlistment.ForceRollback" ); } } public byte[] RecoveryInformation() { if ( DiagnosticTrace.Verbose ) { MethodEnteredTraceRecord.Trace( SR.GetString( SR.TraceSourceLtm ), "PreparingEnlistment.RecoveryInformation" ); } try { lock( this.internalEnlistment.SyncRoot ) { return this.internalEnlistment.State.RecoveryInformation( this.internalEnlistment ); } } finally { if ( DiagnosticTrace.Verbose ) { MethodExitedTraceRecord.Trace( SR.GetString( SR.TraceSourceLtm ), "PreparingEnlistment.RecoveryInformation" ); } } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- #define DEMAND_TX_PERM namespace System.Transactions { using System; using System.Diagnostics; using System.Threading; using System.Transactions; using System.Transactions.Diagnostics; public class PreparingEnlistment : Enlistment { internal PreparingEnlistment( InternalEnlistment enlistment ) : base(enlistment) { } public void Prepared() { if ( DiagnosticTrace.Verbose ) { MethodEnteredTraceRecord.Trace( SR.GetString( SR.TraceSourceLtm ), "PreparingEnlistment.Prepared" ); EnlistmentCallbackPositiveTraceRecord.Trace( SR.GetString( SR.TraceSourceLtm ), this.internalEnlistment.EnlistmentTraceId, EnlistmentCallback.Prepared ); } lock( this.internalEnlistment.SyncRoot ) { this.internalEnlistment.State.Prepared( this.internalEnlistment ); } if ( DiagnosticTrace.Verbose ) { MethodExitedTraceRecord.Trace( SR.GetString( SR.TraceSourceLtm ), "PreparingEnlistment.Prepared" ); } } public void ForceRollback() { if ( DiagnosticTrace.Verbose ) { MethodEnteredTraceRecord.Trace( SR.GetString( SR.TraceSourceLtm ), "PreparingEnlistment.ForceRollback" ); } if ( DiagnosticTrace.Warning ) { EnlistmentCallbackNegativeTraceRecord.Trace( SR.GetString( SR.TraceSourceLtm ), this.internalEnlistment.EnlistmentTraceId, EnlistmentCallback.ForceRollback ); } lock( this.internalEnlistment.SyncRoot ) { this.internalEnlistment.State.ForceRollback( this.internalEnlistment, null ); } if ( DiagnosticTrace.Verbose ) { MethodExitedTraceRecord.Trace( SR.GetString( SR.TraceSourceLtm ), "PreparingEnlistment.ForceRollback" ); } } // Changing the e paramater name would be a breaking change for little benefit. [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly")] public void ForceRollback( Exception e ) { if ( DiagnosticTrace.Verbose ) { MethodEnteredTraceRecord.Trace( SR.GetString( SR.TraceSourceLtm ), "PreparingEnlistment.ForceRollback" ); } if ( DiagnosticTrace.Warning ) { EnlistmentCallbackNegativeTraceRecord.Trace( SR.GetString( SR.TraceSourceLtm ), this.internalEnlistment.EnlistmentTraceId, EnlistmentCallback.ForceRollback ); } lock( this.internalEnlistment.SyncRoot ) { this.internalEnlistment.State.ForceRollback( this.internalEnlistment, e ); } if ( DiagnosticTrace.Verbose ) { MethodExitedTraceRecord.Trace( SR.GetString( SR.TraceSourceLtm ), "PreparingEnlistment.ForceRollback" ); } } public byte[] RecoveryInformation() { if ( DiagnosticTrace.Verbose ) { MethodEnteredTraceRecord.Trace( SR.GetString( SR.TraceSourceLtm ), "PreparingEnlistment.RecoveryInformation" ); } try { lock( this.internalEnlistment.SyncRoot ) { return this.internalEnlistment.State.RecoveryInformation( this.internalEnlistment ); } } finally { if ( DiagnosticTrace.Verbose ) { MethodExitedTraceRecord.Trace( SR.GetString( SR.TraceSourceLtm ), "PreparingEnlistment.RecoveryInformation" ); } } } } } // 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
- GenerateHelper.cs
- XPathChildIterator.cs
- ReturnType.cs
- MethodBuilderInstantiation.cs
- ping.cs
- WebPartZoneCollection.cs
- GeneralTransform3D.cs
- SplashScreenNativeMethods.cs
- CacheEntry.cs
- DBConcurrencyException.cs
- AttachedPropertiesService.cs
- HtmlCalendarAdapter.cs
- Int32EqualityComparer.cs
- TextServicesCompartment.cs
- SchemaEntity.cs
- TextTrailingWordEllipsis.cs
- PartialCachingAttribute.cs
- StateMachineSubscription.cs
- ObservableCollectionDefaultValueFactory.cs
- HwndSource.cs
- SqlUdtInfo.cs
- XsltException.cs
- DeclarationUpdate.cs
- TextAnchor.cs
- PrinterSettings.cs
- EntityKeyElement.cs
- DeferredReference.cs
- XmlQuerySequence.cs
- ActiveXHelper.cs
- RegexInterpreter.cs
- UTF8Encoding.cs
- DocumentViewerConstants.cs
- WebResourceUtil.cs
- BmpBitmapEncoder.cs
- BaseValidator.cs
- ListView.cs
- TreeNodeCollectionEditor.cs
- MenuAdapter.cs
- BaseParagraph.cs
- RegexFCD.cs
- TCPClient.cs
- TextContainerChangedEventArgs.cs
- PropertyDescriptor.cs
- AssociationTypeEmitter.cs
- InputProcessorProfilesLoader.cs
- WorkflowTimerService.cs
- TreeWalker.cs
- XmlValidatingReaderImpl.cs
- EmbeddedMailObjectsCollection.cs
- ColorTransform.cs
- ExtensionWindowResizeGrip.cs
- CodeTypeDeclarationCollection.cs
- XmlnsDictionary.cs
- WCFServiceClientProxyGenerator.cs
- ImageListDesigner.cs
- FocusManager.cs
- RoutedEventValueSerializer.cs
- DbConnectionHelper.cs
- TemplateControlParser.cs
- CommandHelpers.cs
- ZipIOExtraFieldZip64Element.cs
- Attributes.cs
- HtmlPhoneCallAdapter.cs
- KeysConverter.cs
- SqlDataSourceEnumerator.cs
- ParserHooks.cs
- DependencyObjectPropertyDescriptor.cs
- PackageRelationshipSelector.cs
- StrokeFIndices.cs
- SqlReferenceCollection.cs
- Debug.cs
- TextElement.cs
- List.cs
- ThicknessAnimationBase.cs
- MetadataPropertyvalue.cs
- NativeCompoundFileAPIs.cs
- WorkflowServiceBuildProvider.cs
- ToolStripProgressBar.cs
- ParseChildrenAsPropertiesAttribute.cs
- DetailsViewDeletedEventArgs.cs
- DocumentEventArgs.cs
- HyperlinkAutomationPeer.cs
- SettingsPropertyCollection.cs
- ContextMenuAutomationPeer.cs
- TextReader.cs
- ColumnResizeAdorner.cs
- Rect.cs
- ApplicationId.cs
- LongPath.cs
- SelectionList.cs
- DynamicUpdateCommand.cs
- PresentationTraceSources.cs
- XmlJsonWriter.cs
- cryptoapiTransform.cs
- CqlParserHelpers.cs
- WrapPanel.cs
- HttpModulesSection.cs
- formatter.cs
- SoapWriter.cs
- DragDropHelper.cs