WCF REST Service
]]>
_
Public Interface I${ClassName}
_
_
Function MyOperation(name As String) As String
End Interface
'''
''' Description of ${ClassName}.
'''
Public Class ${ClassName}
Implements I${ClassName}
Function MyOperation(name As String) As String Implements I${ClassName}.MyOperation
' implement the operation
Return String.Format("Operation name: {0}", name)
End Sub
End Class
]]>