Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / ServiceModel / System / ServiceModel / Dispatcher / ListenerBinder.cs / 1 / ListenerBinder.cs
//------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace System.ServiceModel.Dispatcher { using System; using System.ServiceModel.Channels; static class ListenerBinder { internal static IListenerBinder GetBinder(IChannelListener listener, MessageVersion messageVersion) { IChannelListenerinput = listener as IChannelListener ; if (input != null) return new InputListenerBinder(input, messageVersion); IChannelListener inputSession = listener as IChannelListener ; if (inputSession != null) return new InputSessionListenerBinder(inputSession, messageVersion); IChannelListener reply = listener as IChannelListener ; if (reply != null) return new ReplyListenerBinder(reply, messageVersion); IChannelListener replySession = listener as IChannelListener ; if (replySession != null) return new ReplySessionListenerBinder(replySession, messageVersion); IChannelListener duplex = listener as IChannelListener ; if (duplex != null) return new DuplexListenerBinder(duplex, messageVersion); IChannelListener duplexSession = listener as IChannelListener ; if (duplexSession != null) return new DuplexSessionListenerBinder(duplexSession, messageVersion); throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.UnknownListenerType1, listener.Uri.AbsoluteUri))); } // ----------------------------------------------------------------------------------------------------------- // Listener Binders class DuplexListenerBinder : IListenerBinder { IRequestReplyCorrelator correlator; IChannelListener listener; MessageVersion messageVersion; internal DuplexListenerBinder(IChannelListener listener, MessageVersion messageVersion) { this.correlator = new RequestReplyCorrelator(); this.listener = listener; this.messageVersion = messageVersion; } public IChannelListener Listener { get { return this.listener; } } public MessageVersion MessageVersion { get { return this.messageVersion; } } public IChannelBinder Accept(TimeSpan timeout) { IDuplexChannel channel = this.listener.AcceptChannel(timeout); if (channel == null) return null; return new DuplexChannelBinder(channel, this.correlator, this.listener.Uri); } public IAsyncResult BeginAccept(TimeSpan timeout, AsyncCallback callback, object state) { return this.listener.BeginAcceptChannel(timeout, callback, state); } public IChannelBinder EndAccept(IAsyncResult result) { IDuplexChannel channel = this.listener.EndAcceptChannel(result); if (channel == null) return null; return new DuplexChannelBinder(channel, this.correlator, this.listener.Uri); } } class DuplexSessionListenerBinder : IListenerBinder { IRequestReplyCorrelator correlator; IChannelListener listener; MessageVersion messageVersion; internal DuplexSessionListenerBinder(IChannelListener listener, MessageVersion messageVersion) { this.correlator = new RequestReplyCorrelator(); this.listener = listener; this.messageVersion = messageVersion; } public IChannelListener Listener { get { return this.listener; } } public MessageVersion MessageVersion { get { return this.messageVersion; } } public IChannelBinder Accept(TimeSpan timeout) { IDuplexSessionChannel channel = this.listener.AcceptChannel(timeout); if (channel == null) return null; return new DuplexChannelBinder(channel, this.correlator, this.listener.Uri); } public IAsyncResult BeginAccept(TimeSpan timeout, AsyncCallback callback, object state) { return this.listener.BeginAcceptChannel(timeout, callback, state); } public IChannelBinder EndAccept(IAsyncResult result) { IDuplexSessionChannel channel = this.listener.EndAcceptChannel(result); if (channel == null) return null; return new DuplexChannelBinder(channel, this.correlator, this.listener.Uri); } } class InputListenerBinder : IListenerBinder { IChannelListener listener; MessageVersion messageVersion; internal InputListenerBinder(IChannelListener listener, MessageVersion messageVersion) { this.listener = listener; this.messageVersion = messageVersion; } public IChannelListener Listener { get { return this.listener; } } public MessageVersion MessageVersion { get { return this.messageVersion; } } public IChannelBinder Accept(TimeSpan timeout) { IInputChannel channel = this.listener.AcceptChannel(timeout); if (channel == null) return null; return new InputChannelBinder(channel, this.listener.Uri); } public IAsyncResult BeginAccept(TimeSpan timeout, AsyncCallback callback, object state) { return this.listener.BeginAcceptChannel(timeout, callback, state); } public IChannelBinder EndAccept(IAsyncResult result) { IInputChannel channel = this.listener.EndAcceptChannel(result); if (channel == null) return null; return new InputChannelBinder(channel, this.listener.Uri); } } class InputSessionListenerBinder : IListenerBinder { IChannelListener listener; MessageVersion messageVersion; internal InputSessionListenerBinder(IChannelListener listener, MessageVersion messageVersion) { this.listener = listener; this.messageVersion = messageVersion; } public IChannelListener Listener { get { return this.listener; } } public MessageVersion MessageVersion { get { return this.messageVersion; } } public IChannelBinder Accept(TimeSpan timeout) { IInputSessionChannel channel = this.listener.AcceptChannel(timeout); if (null == channel) return null; return new InputChannelBinder(channel, this.listener.Uri); } public IAsyncResult BeginAccept(TimeSpan timeout, AsyncCallback callback, object state) { return this.listener.BeginAcceptChannel(timeout, callback, state); } public IChannelBinder EndAccept(IAsyncResult result) { IInputSessionChannel channel = this.listener.EndAcceptChannel(result); if (channel == null) return null; return new InputChannelBinder(channel, this.listener.Uri); } } class ReplyListenerBinder : IListenerBinder { IChannelListener listener; MessageVersion messageVersion; internal ReplyListenerBinder(IChannelListener listener, MessageVersion messageVersion) { this.listener = listener; this.messageVersion = messageVersion; } public IChannelListener Listener { get { return this.listener; } } public MessageVersion MessageVersion { get { return this.messageVersion; } } public IChannelBinder Accept(TimeSpan timeout) { IReplyChannel channel = this.listener.AcceptChannel(timeout); if (channel == null) return null; return new ReplyChannelBinder(channel, listener.Uri); } public IAsyncResult BeginAccept(TimeSpan timeout, AsyncCallback callback, object state) { return this.listener.BeginAcceptChannel(timeout, callback, state); } public IChannelBinder EndAccept(IAsyncResult result) { IReplyChannel channel = this.listener.EndAcceptChannel(result); if (channel == null) return null; return new ReplyChannelBinder(channel, listener.Uri); } } class ReplySessionListenerBinder : IListenerBinder { IChannelListener listener; MessageVersion messageVersion; internal ReplySessionListenerBinder(IChannelListener listener, MessageVersion messageVersion) { this.listener = listener; this.messageVersion = messageVersion; } public IChannelListener Listener { get { return this.listener; } } public MessageVersion MessageVersion { get { return this.messageVersion; } } public IChannelBinder Accept(TimeSpan timeout) { IReplySessionChannel channel = this.listener.AcceptChannel(timeout); if (channel == null) return null; return new ReplyChannelBinder(channel, listener.Uri); } public IAsyncResult BeginAccept(TimeSpan timeout, AsyncCallback callback, object state) { return this.listener.BeginAcceptChannel(timeout, callback, state); } public IChannelBinder EndAccept(IAsyncResult result) { IReplySessionChannel channel = this.listener.EndAcceptChannel(result); if (channel == null) return null; return new ReplyChannelBinder(channel, listener.Uri); } } } } // 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
- GeometryCollection.cs
- StorageTypeMapping.cs
- ServiceBusyException.cs
- ItemCollection.cs
- CustomAttributeBuilder.cs
- LocationUpdates.cs
- QualifierSet.cs
- CurrencyManager.cs
- _NetworkingPerfCounters.cs
- PathSegment.cs
- ConfigurationCollectionAttribute.cs
- SiteOfOriginContainer.cs
- SBCSCodePageEncoding.cs
- updateconfighost.cs
- NameValueFileSectionHandler.cs
- ProcessManager.cs
- HtmlGenericControl.cs
- Tile.cs
- DbExpressionRules.cs
- ClientRuntimeConfig.cs
- CodeAssignStatement.cs
- MatrixConverter.cs
- SessionStateContainer.cs
- MessageQueueException.cs
- SortKey.cs
- GeometryCombineModeValidation.cs
- Soap.cs
- PackageRelationshipSelector.cs
- ISAPIWorkerRequest.cs
- SessionEndingCancelEventArgs.cs
- UnsafeNativeMethods.cs
- DbProviderServices.cs
- HostExecutionContextManager.cs
- CaseStatementSlot.cs
- MessageContractImporter.cs
- DtrList.cs
- MouseActionValueSerializer.cs
- WCFBuildProvider.cs
- DataGridViewControlCollection.cs
- TextSearch.cs
- StrokeNode.cs
- PersonalizationProviderCollection.cs
- ImageDrawing.cs
- TableProviderWrapper.cs
- UpdateProgress.cs
- XmlResolver.cs
- NamedPipeTransportBindingElement.cs
- QuadraticBezierSegment.cs
- CreateUserErrorEventArgs.cs
- DefaultPropertiesToSend.cs
- DocumentPageHost.cs
- DataServiceContext.cs
- Form.cs
- ScriptingRoleServiceSection.cs
- UserPreferenceChangedEventArgs.cs
- Grid.cs
- PropertyNames.cs
- UnsafePeerToPeerMethods.cs
- ToolStripDropDownItem.cs
- StrokeFIndices.cs
- AdCreatedEventArgs.cs
- WhitespaceRuleReader.cs
- XmlSerializationWriter.cs
- SQLDecimal.cs
- DataGridViewTopRowAccessibleObject.cs
- HttpClientCertificate.cs
- DependencyPropertyChangedEventArgs.cs
- TextPatternIdentifiers.cs
- SafeWaitHandle.cs
- KoreanCalendar.cs
- StringBlob.cs
- TypeHelpers.cs
- ProjectionPlan.cs
- MemoryMappedFileSecurity.cs
- Sentence.cs
- HttpClientCertificate.cs
- WindowsFormsHostPropertyMap.cs
- CommandHelpers.cs
- MulticastIPAddressInformationCollection.cs
- TrailingSpaceComparer.cs
- MbpInfo.cs
- sitestring.cs
- OdbcFactory.cs
- WebPartHelpVerb.cs
- RedistVersionInfo.cs
- MenuScrollingVisibilityConverter.cs
- WebServiceTypeData.cs
- SignerInfo.cs
- ApplicationException.cs
- StateWorkerRequest.cs
- NativeMethods.cs
- SqlVersion.cs
- UnaryQueryOperator.cs
- ReadOnlyDictionary.cs
- BlurEffect.cs
- NodeFunctions.cs
- ClientFormsAuthenticationMembershipProvider.cs
- HatchBrush.cs
- PrincipalPermission.cs
- RelationshipEnd.cs