2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / class / System.ServiceModel / System.ServiceModel.Dispatcher / OperationContextScopeHandler.cs
blob768c4c19a9c5c9f62831e08885cb6a86e326274f
1 using System;
2 using System.Collections.Generic;
3 using System.Text;
5 namespace System.ServiceModel.Dispatcher
7 internal class OperationContextScopeHandler : BaseRequestProcessorHandler
9 public override void ProcessRequestChain (MessageProcessingContext mrc)
11 using (new OperationContextScope (mrc.OperationContext)) {
12 base.ProcessRequestChain (mrc);
16 protected override bool ProcessRequest (MessageProcessingContext mrc)
18 return false;