added SSCLI 1.0
[windows-sources.git] / sdk / samples / WCFSamples / TechnologySamples / Basic / Web / BasicWebProgramming / VB / IService.vb
blob0cd6905902be4be4ebfded67aba0f6081be5b2bb
1 ' Copyright (c) Microsoft Corporation. All rights reserved.
3 Imports System
4 Imports System.Collections.Generic
5 Imports System.ServiceModel
6 Imports System.ServiceModel.Web
7 Imports System.Text
8 Namespace Microsoft.ServiceModel.Samples.BasicWebProgramming
10 <ServiceContract()> _
11 Public Interface IService
12 <OperationContract()> _
13 <WebGet()> _
14 Function EchoWithGet(ByVal s As String) As String
16 <OperationContract()> _
17 <WebInvoke()> _
18 Function EchoWithPost(ByVal s As String) As String
19 End Interface
20 End Namespace