| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- //------------------------------------------------------------
- // Copyright (c) Microsoft Corporation. All rights reserved.
- //------------------------------------------------------------
- namespace System.ServiceModel.Channels
- {
- using System;
- using System.Collections.Generic;
- using System.ServiceModel;
- class ContextReplySessionChannel : LayeredChannel<IReplySessionChannel>, IReplySessionChannel
- {
- ContextProtocol contextProtocol;
- public ContextReplySessionChannel(ChannelManagerBase channelManager, IReplySessionChannel innerChannel, ContextExchangeMechanism contextExchangeMechanism)
- : base(channelManager, innerChannel)
- {
- this.contextProtocol = new ServiceContextProtocol(contextExchangeMechanism);
- }
- public EndpointAddress LocalAddress
- {
- get { return this.InnerChannel.LocalAddress; }
- }
- public IInputSession Session
- {
- get { return this.InnerChannel.Session; }
- }
- public IAsyncResult BeginReceiveRequest(TimeSpan timeout, AsyncCallback callback, object state)
- {
- return this.InnerChannel.BeginReceiveRequest(timeout, callback, state);
- }
- public IAsyncResult BeginReceiveRequest(AsyncCallback callback, object state)
- {
- return this.InnerChannel.BeginReceiveRequest(callback, state);
- }
- public IAsyncResult BeginTryReceiveRequest(TimeSpan timeout, AsyncCallback callback, object state)
- {
- return this.InnerChannel.BeginTryReceiveRequest(timeout, callback, state);
- }
- public IAsyncResult BeginWaitForRequest(TimeSpan timeout, AsyncCallback callback, object state)
- {
- return this.InnerChannel.BeginWaitForRequest(timeout, callback, state);
- }
- public RequestContext EndReceiveRequest(IAsyncResult result)
- {
- RequestContext innerContext = this.InnerChannel.EndReceiveRequest(result);
- if (innerContext == null)
- {
- return null;
- }
- else
- {
- return this.CreateContextChannelRequestContext(innerContext);
- }
- }
- public bool EndTryReceiveRequest(IAsyncResult result, out RequestContext context)
- {
- context = null;
- RequestContext innerContext;
- if (this.InnerChannel.EndTryReceiveRequest(result, out innerContext))
- {
- if (innerContext != null)
- {
- context = this.CreateContextChannelRequestContext(innerContext);
- }
- return true;
- }
- else
- {
- return false;
- }
- }
- public bool EndWaitForRequest(IAsyncResult result)
- {
- return this.InnerChannel.EndWaitForRequest(result);
- }
- public RequestContext ReceiveRequest(TimeSpan timeout)
- {
- RequestContext innerContext = this.InnerChannel.ReceiveRequest(timeout);
- if (innerContext == null)
- {
- return null;
- }
- else
- {
- return this.CreateContextChannelRequestContext(innerContext);
- }
- }
- public RequestContext ReceiveRequest()
- {
- RequestContext innerContext = this.InnerChannel.ReceiveRequest();
- if (innerContext == null)
- {
- return null;
- }
- else
- {
- return this.CreateContextChannelRequestContext(innerContext);
- }
- }
- public bool TryReceiveRequest(TimeSpan timeout, out RequestContext context)
- {
- RequestContext innerContext;
- if (this.InnerChannel.TryReceiveRequest(timeout, out innerContext))
- {
- context = this.CreateContextChannelRequestContext(innerContext);
- return true;
- }
- else
- {
- context = null;
- return false;
- }
- }
- public bool WaitForRequest(TimeSpan timeout)
- {
- return this.InnerChannel.WaitForRequest(timeout);
- }
- ContextChannelRequestContext CreateContextChannelRequestContext(RequestContext innerContext)
- {
- this.contextProtocol.OnIncomingMessage(innerContext.RequestMessage);
- return new ContextChannelRequestContext(innerContext, this.contextProtocol, this.DefaultSendTimeout);
- }
- }
- }
|