jezell / iserviceoriented

This URL has Read+Write access

iserviceoriented / IServiceOriented.ServiceBus / IPassThroughServiceContract.cs
100644 18 lines (15 sloc) 0.37 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
 
using System.ServiceModel;
using System.ServiceModel.Channels;
 
namespace IServiceOriented.ServiceBus
{
[ServiceContract]
    public interface IPassThroughServiceContract
    {
[OperationContract(Action="*", IsOneWay=true)]
        void Send(Message message);
    }
}