repo.or.cz
/
windows-sources.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
added samples
[windows-sources.git]
/
sdk
/
samples
/
WCFSamples
/
TechnologySamples
/
Extensibility
/
Binding
/
NetHttpBinding
/
CS
/
Service
/
Contract.cs
blob
de9c6dc9063ef223e2cf50636a967f7b8469364d
1
using
System
;
2
using
System
.
Collections
.
Generic
;
3
using
System
.
ServiceModel
;
4
using
System
.
Text
;
5
6
namespace
Microsoft
.
ServiceModel
.
Samples
.
Service
7
{
8
[
ServiceContract
]
9
public interface
IEchoService
10
{
11
[
OperationContract
]
12
string
Echo
(
string
message
);
13
}
14
}