flush
[mcs.git] / class / System.ServiceModel.Routing / System.ServiceModel.Dispatcher / EndpointNameMessageFilter.cs
blob556b760cb87174a59f0e1e5fcd378f906afd6de3
1 using System;
2 using System.Collections.Generic;
3 using System.Collections.ObjectModel;
4 using System.ServiceModel;
5 using System.ServiceModel.Channels;
6 using System.ServiceModel.Description;
7 using System.ServiceModel.Dispatcher;
9 namespace System.ServiceModel.Dispatcher
11 public class EndpointNameMessageFilter : MessageFilter
13 public EndpointNameMessageFilter (string endpointName)
15 Name = endpointName;
18 internal string Name { get; private set; }
20 [MonoTODO]
21 public override bool Match (Message message)
23 throw new NotImplementedException ();
26 [MonoTODO]
27 public override bool Match (MessageBuffer buffer)
29 throw new NotImplementedException ();