a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
30 lines
679 B
C#
30 lines
679 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.ServiceModel.Channels;
|
|
using System.ServiceModel;
|
|
|
|
namespace System.ServiceModel.Dispatcher
|
|
{
|
|
internal class PostReceiveRequestHandler : BaseRequestProcessorHandler
|
|
{
|
|
protected override bool ProcessRequest (MessageProcessingContext mrc)
|
|
{
|
|
EnsureInstanceContextOpen (mrc.InstanceContext);
|
|
AfterReceiveRequest (mrc);
|
|
return false;
|
|
}
|
|
|
|
void AfterReceiveRequest (MessageProcessingContext mrc)
|
|
{
|
|
mrc.EventsHandler.AfterReceiveRequest ();
|
|
}
|
|
|
|
void EnsureInstanceContextOpen (InstanceContext ictx)
|
|
{
|
|
if (ictx.State != CommunicationState.Opened)
|
|
ictx.Open ();
|
|
}
|
|
}
|
|
}
|