Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / ServiceModel / System / ServiceModel / Channels / MsmqInputSessionChannel.cs / 1 / MsmqInputSessionChannel.cs
//------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------- namespace System.ServiceModel.Channels { using System.Runtime.InteropServices; using System.ServiceModel; using System.Threading; using System.Transactions; using SR=System.ServiceModel.SR; sealed class MsmqInputSessionChannel : InputChannel, IInputSessionChannel { IInputSession session; Transaction associatedTx; public MsmqInputSessionChannel(MsmqInputSessionChannelListener listener, Transaction associatedTx) : base(listener, new EndpointAddress(listener.Uri)) { this.session = new InputSession(); this.associatedTx = associatedTx; this.associatedTx.EnlistVolatile(new TransactionEnlistment(this, this.associatedTx), EnlistmentOptions.None); } public IInputSession Session { get { return this.session; } } public override Message Receive() { return this.Receive(this.DefaultReceiveTimeout); } public override Message Receive(TimeSpan timeout) { return InputChannel.HelpReceive(this, timeout); } public override IAsyncResult BeginReceive(AsyncCallback callback, object state) { return this.BeginReceive(this.DefaultReceiveTimeout, callback, state); } public override IAsyncResult BeginReceive(TimeSpan timeout, AsyncCallback callback, object state) { return InputChannel.HelpBeginReceive(this, timeout, callback, state); } public override bool TryReceive(TimeSpan timeout, out Message message) { ThrowIfFaulted(); if (CommunicationState.Closed == this.State || CommunicationState.Closing == this.State) { message = null; return true; } VerifyTransaction(); return base.TryReceive(timeout, out message); } public override IAsyncResult BeginTryReceive(TimeSpan timeout, AsyncCallback callback, object state) { ThrowIfFaulted(); if (CommunicationState.Closed == this.State || CommunicationState.Closing == this.State) { return new TypedCompletedAsyncResult(true, null, callback, state); } VerifyTransaction(); return base.BeginTryReceive(timeout, callback, state); } public override bool EndTryReceive(IAsyncResult result, out Message message) { TypedCompletedAsyncResult completedResult = result as TypedCompletedAsyncResult ; if (null != completedResult) return TypedCompletedAsyncResult .End(result, out message); else return base.EndTryReceive(result, out message); } public void FaultChannel() { this.Fault(); } void OnCloseCore(bool isAborting) { if (isAborting) { RollbackTransaction(); } else { VerifyTransaction(); if (this.InternalPendingItems > 0) { RollbackTransaction(); this.Fault(); throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.MsmqSessionMessagesNotConsumed))); } } } protected override void OnAbort() { OnCloseCore(true); base.OnAbort(); } protected override void OnClose(TimeSpan timeout) { OnCloseCore(false); base.OnClose(timeout); } protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) { OnCloseCore(false); return base.OnBeginClose(timeout, callback, state); } void RollbackTransaction() { try { if (TransactionStatus.Active == this.associatedTx.TransactionInformation.Status) this.associatedTx.Rollback(); } catch (TransactionAbortedException ex) { MsmqDiagnostics.ExpectedException(ex); } catch (ObjectDisposedException ex) { MsmqDiagnostics.ExpectedException(ex); } } void VerifyTransaction() { if (this.InternalPendingItems > 0) { if (this.associatedTx != Transaction.Current) { RollbackTransaction(); this.Fault(); throw DiagnosticUtility.ExceptionUtility.ThrowHelperCritical(new InvalidOperationException(SR.GetString(SR.MsmqSameTransactionExpected))); } if (TransactionStatus.Active != Transaction.Current.TransactionInformation.Status) { RollbackTransaction(); this.Fault(); throw DiagnosticUtility.ExceptionUtility.ThrowHelperCritical(new InvalidOperationException(SR.GetString(SR.MsmqTransactionNotActive))); } } } class InputSession : IInputSession { string id = "uuid://session-gram/" + Guid.NewGuid().ToString(); public string Id { get { return this.id; } } } class TransactionEnlistment : IEnlistmentNotification { MsmqInputSessionChannel channel; Transaction transaction; public TransactionEnlistment(MsmqInputSessionChannel channel, Transaction transaction) { this.channel = channel; this.transaction = transaction; } public void Prepare(PreparingEnlistment preparingEnlistment) { // Abort if this happens before all messges are consumed if (this.channel.State == CommunicationState.Opened && this.channel.InternalPendingItems > 0) { Exception e = DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.MsmqSessionChannelsMustBeClosed))); preparingEnlistment.ForceRollback(e); this.channel.Fault(); } else { preparingEnlistment.Done(); } } public void Commit(Enlistment enlistment) { enlistment.Done(); } public void Rollback(Enlistment enlistment) { channel.Fault(); enlistment.Done(); } public void InDoubt(Enlistment enlistment) { enlistment.Done(); } } } } // 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
- ServiceModelSecurityTokenTypes.cs
- VectorAnimationUsingKeyFrames.cs
- WindowsGraphics.cs
- AmbientProperties.cs
- SchemaImporterExtensionElementCollection.cs
- Evidence.cs
- SqlDataSourceEnumerator.cs
- CodeNamespaceImport.cs
- CodeTryCatchFinallyStatement.cs
- GridPattern.cs
- Point3DIndependentAnimationStorage.cs
- XmlValueConverter.cs
- EventLogPermissionEntry.cs
- ContextCorrelationInitializer.cs
- URL.cs
- PathGradientBrush.cs
- NameValueFileSectionHandler.cs
- HttpAsyncResult.cs
- Internal.cs
- IFormattable.cs
- HostingEnvironment.cs
- MessageDescriptionCollection.cs
- CallbackValidatorAttribute.cs
- SmiMetaData.cs
- MimeTypeAttribute.cs
- PointAnimationUsingPath.cs
- DetailsViewInsertEventArgs.cs
- ReadOnlyHierarchicalDataSourceView.cs
- TokenizerHelper.cs
- PolyBezierSegment.cs
- IndexedWhereQueryOperator.cs
- AudioBase.cs
- ObjectDataProvider.cs
- TextDpi.cs
- OrthographicCamera.cs
- hwndwrapper.cs
- XmlParserContext.cs
- UserNameServiceElement.cs
- TemplateBamlRecordReader.cs
- DbDataReader.cs
- GlobalizationSection.cs
- BooleanAnimationBase.cs
- SurrogateEncoder.cs
- Aggregates.cs
- TypeUtil.cs
- ThreadAttributes.cs
- CompoundFileIOPermission.cs
- bidPrivateBase.cs
- PolyLineSegmentFigureLogic.cs
- LifetimeServices.cs
- Sequence.cs
- FolderLevelBuildProvider.cs
- ResourceProviderFactory.cs
- QualifiedCellIdBoolean.cs
- PolyLineSegmentFigureLogic.cs
- UIAgentAsyncEndRequest.cs
- IgnoreSection.cs
- DataServiceException.cs
- SimpleWebHandlerParser.cs
- ControlDesignerState.cs
- LayoutExceptionEventArgs.cs
- HiddenField.cs
- WindowsContainer.cs
- RightsManagementPermission.cs
- ValueTable.cs
- FormsIdentity.cs
- SelectionEditor.cs
- NameNode.cs
- XmlSchemaSequence.cs
- _ListenerResponseStream.cs
- DefaultHttpHandler.cs
- TypeReference.cs
- FileUtil.cs
- XmlSchemaAll.cs
- Baml6ConstructorInfo.cs
- OciHandle.cs
- RoutedUICommand.cs
- ProcessProtocolHandler.cs
- StringAnimationBase.cs
- RepeatBehaviorConverter.cs
- TreeWalkHelper.cs
- DataGridViewColumnConverter.cs
- SqlConnectionString.cs
- FilterRepeater.cs
- StringCollection.cs
- HttpGetProtocolReflector.cs
- DataPagerFieldCollection.cs
- FileDataSourceCache.cs
- UniqueID.cs
- SingleAnimationUsingKeyFrames.cs
- FacetChecker.cs
- HtmlInputRadioButton.cs
- HybridDictionary.cs
- TdsParserHelperClasses.cs
- MethodBody.cs
- FactoryId.cs
- StringCollection.cs
- SqlTransaction.cs
- WebBrowserDesigner.cs
- StaticFileHandler.cs