Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / ServiceModel / System / ServiceModel / Channels / MsmqInputChannelBase.cs / 1 / MsmqInputChannelBase.cs
//------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------- namespace System.ServiceModel.Channels { using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.ServiceModel; using System.Transactions; abstract class MsmqInputChannelBase : ChannelBase, IInputChannel { EndpointAddress localAddress; MsmqReceiveHelper receiver; MsmqReceiveParameters receiveParameters; MsmqInputChannelListenerBase listener; public MsmqInputChannelBase(MsmqInputChannelListenerBase listener, IMsmqMessagePool messagePool) : base(listener) { this.receiveParameters = listener.ReceiveParameters; this.receiver = new MsmqReceiveHelper(listener.ReceiveParameters, listener.Uri, messagePool, this, listener); this.localAddress = new EndpointAddress(listener.Uri); this.listener = listener; } public EndpointAddress LocalAddress { get { return this.localAddress; } } protected MsmqReceiveHelper MsmqReceiveHelper { get { return this.receiver; } } protected MsmqReceiveParameters ReceiveParameters { get { return this.receiveParameters; } } protected virtual void OnCloseCore(bool isAborting) { receiver.Close(); } protected virtual void OnOpenCore() { try { receiver.Open(); } catch (MsmqException ex) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(ex.Normalized); } } protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) { OnOpenCore(); return new CompletedAsyncResult(callback, state); } protected override void OnOpen(TimeSpan timeout) { OnOpenCore(); } protected override void OnEndOpen(IAsyncResult result) { CompletedAsyncResult.End(result); } protected override void OnAbort() { OnCloseCore(true); } protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) { OnCloseCore(false); return new CompletedAsyncResult(callback, state); } protected override void OnClose(TimeSpan timeout) { OnCloseCore(false); } protected override void OnEndClose(IAsyncResult result) { CompletedAsyncResult.End(result); } abstract protected Message DecodeMsmqMessage(MsmqInputMessage msmqMessage, MsmqMessageProperty property); internal void FaultChannel() { this.Fault(); } // Receive public Message Receive() { return this.Receive(this.DefaultReceiveTimeout); } // public Message Receive(TimeSpan timeout) { return InputChannel.HelpReceive(this, timeout); } // public IAsyncResult BeginReceive(AsyncCallback callback, object state) { return this.BeginReceive(this.DefaultReceiveTimeout, callback, state); } public IAsyncResult BeginReceive(TimeSpan timeout, AsyncCallback callback, object state) { using (MsmqDiagnostics.BoundReceiveOperation(this.receiver)) { return InputChannel.HelpBeginReceive(this, timeout, callback, state); } } public Message EndReceive(IAsyncResult result) { return InputChannel.HelpEndReceive(result); } // TryReceive public bool TryReceive(TimeSpan timeout, out Message message) { message = null; if (DoneReceivingInCurrentState()) return true; using (MsmqDiagnostics.BoundReceiveOperation(this.receiver)) { MsmqInputMessage msmqMessage = this.receiver.TakeMessage(); try { MsmqMessageProperty property; bool retval = this.receiver.TryReceive( msmqMessage, timeout, this.ReceiveParameters.ExactlyOnce ? MsmqTransactionMode.CurrentOrNone : MsmqTransactionMode.None, out property); if (retval) { if (null != property) { message = DecodeMsmqMessage(msmqMessage, property); message.Properties[MsmqMessageProperty.Name] = property; MsmqDiagnostics.DatagramReceived(msmqMessage.MessageId, message); this.listener.RaiseMessageReceived(); } else if (CommunicationState.Opened == this.State) { this.listener.FaultListener(); this.Fault(); } } return retval; } catch (MsmqException ex) { if (ex.FaultReceiver) { this.listener.FaultListener(); this.Fault(); } throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(ex.Normalized); } finally { this.receiver.ReturnMessage(msmqMessage); } } } public IAsyncResult BeginTryReceive(TimeSpan timeout, AsyncCallback callback, object state) { if (DoneReceivingInCurrentState()) return new DoneReceivingAsyncResult(callback, state); MsmqInputMessage msmqMessage = this.receiver.TakeMessage(); return this.receiver.BeginTryReceive( msmqMessage, timeout, this.ReceiveParameters.ExactlyOnce ? MsmqTransactionMode.CurrentOrNone : MsmqTransactionMode.None, callback, state); } public bool EndTryReceive(IAsyncResult result, out Message message) { message = null; if (null == result) throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("result"); DoneReceivingAsyncResult doneRecevingResult = result as DoneReceivingAsyncResult; if (doneRecevingResult != null) return DoneReceivingAsyncResult.End(doneRecevingResult); MsmqInputMessage msmqMessage = null; MsmqMessageProperty property = null; try { bool retval = this.receiver.EndTryReceive(result, out msmqMessage, out property); if (retval) { if(null != property) { message = DecodeMsmqMessage(msmqMessage, property); message.Properties[MsmqMessageProperty.Name] = property; MsmqDiagnostics.DatagramReceived(msmqMessage.MessageId, message); this.listener.RaiseMessageReceived(); } else if (CommunicationState.Opened == this.State) { this.listener.FaultListener(); this.Fault(); } } return retval; } catch (MsmqException ex) { if (ex.FaultReceiver) { this.listener.FaultListener(); this.Fault(); } throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(ex.Normalized); } finally { if (null != msmqMessage) this.receiver.ReturnMessage(msmqMessage); } } // WaitForMessage public bool WaitForMessage(TimeSpan timeout) { if (DoneReceivingInCurrentState()) return true; try { return this.receiver.WaitForMessage(timeout); } catch (MsmqException ex) { if (ex.FaultReceiver) { this.listener.FaultListener(); this.Fault(); } throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(ex.Normalized); } } public IAsyncResult BeginWaitForMessage(TimeSpan timeout, AsyncCallback callback, object state) { if (DoneReceivingInCurrentState()) return new DoneReceivingAsyncResult(callback, state); return this.receiver.BeginWaitForMessage(timeout, callback, state); } public bool EndWaitForMessage(IAsyncResult result) { if (null == result) throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("result"); DoneReceivingAsyncResult doneRecevingResult = result as DoneReceivingAsyncResult; if (doneRecevingResult != null) return DoneReceivingAsyncResult.End(doneRecevingResult); try { return this.receiver.EndWaitForMessage(result); } catch (MsmqException ex) { if (ex.FaultReceiver) { this.listener.FaultListener(); this.Fault(); } throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(ex.Normalized); } } } } // 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
- ConvertEvent.cs
- BoundingRectTracker.cs
- XmlSchemaObjectCollection.cs
- WhereQueryOperator.cs
- JsonFormatGeneratorStatics.cs
- Classification.cs
- InfoCardSymmetricCrypto.cs
- OracleRowUpdatedEventArgs.cs
- CoTaskMemUnicodeSafeHandle.cs
- UrlPath.cs
- ResourcePermissionBase.cs
- ComponentEditorPage.cs
- CompiledWorkflowDefinitionContext.cs
- Control.cs
- SynchronousReceiveBehavior.cs
- MemberAccessException.cs
- safex509handles.cs
- PanelStyle.cs
- Sentence.cs
- DateTime.cs
- DataGridViewLinkCell.cs
- AnnotationHighlightLayer.cs
- WaitHandleCannotBeOpenedException.cs
- ResXResourceReader.cs
- CapabilitiesPattern.cs
- MediaCommands.cs
- StorageEntityContainerMapping.cs
- DbDataReader.cs
- AutomationPeer.cs
- CodeTypeOfExpression.cs
- HandlerWithFactory.cs
- SizeIndependentAnimationStorage.cs
- FunctionDescription.cs
- DocumentPageHost.cs
- ObjectHelper.cs
- VectorAnimationBase.cs
- CaseStatementSlot.cs
- UrlUtility.cs
- DataError.cs
- DynamicFilterExpression.cs
- DataGridViewColumnHeaderCell.cs
- TextBoxAutomationPeer.cs
- DataTemplateKey.cs
- DownloadProgressEventArgs.cs
- ObjectConverter.cs
- UiaCoreApi.cs
- ContentPlaceHolder.cs
- ObjectDataSourceStatusEventArgs.cs
- BaseInfoTable.cs
- Mapping.cs
- EntityCommandExecutionException.cs
- DocumentsTrace.cs
- DataBindingValueUIHandler.cs
- HotSpotCollection.cs
- FullTextLine.cs
- ApplicationContext.cs
- FormsAuthenticationEventArgs.cs
- AspNetCompatibilityRequirementsAttribute.cs
- ExceptionWrapper.cs
- CodeDefaultValueExpression.cs
- DataGridViewCheckBoxColumn.cs
- SqlBinder.cs
- Condition.cs
- FileLogRecordStream.cs
- TextRangeAdaptor.cs
- BackEase.cs
- SqlRecordBuffer.cs
- DataGridViewControlCollection.cs
- RegistryPermission.cs
- FixedDocumentSequencePaginator.cs
- XmlAnyElementAttribute.cs
- IndexingContentUnit.cs
- CompilationRelaxations.cs
- fixedPageContentExtractor.cs
- TextEncodedRawTextWriter.cs
- SessionPageStatePersister.cs
- HtmlInputReset.cs
- SqlNodeAnnotation.cs
- ValidationException.cs
- SoapElementAttribute.cs
- XmlArrayAttribute.cs
- CharUnicodeInfo.cs
- Run.cs
- XhtmlMobileTextWriter.cs
- AttributeQuery.cs
- CodeCommentStatementCollection.cs
- CacheVirtualItemsEvent.cs
- ResourceDescriptionAttribute.cs
- httpapplicationstate.cs
- TableLayoutColumnStyleCollection.cs
- ConfigsHelper.cs
- metrodevice.cs
- IntegerFacetDescriptionElement.cs
- TableItemPattern.cs
- ScriptingRoleServiceSection.cs
- ViewManager.cs
- SHA256Managed.cs
- PresentationAppDomainManager.cs
- _DigestClient.cs
- FindProgressChangedEventArgs.cs