Skip to content

Instantly share code, notes, and snippets.

@Tapanila
Created August 19, 2012 12:31
Show Gist options
  • Save Tapanila/3394622 to your computer and use it in GitHub Desktop.
Save Tapanila/3394622 to your computer and use it in GitHub Desktop.
using System.ServiceModel;
namespace WcfServiceExample
{
[ServiceContract]
public interface IService1
{
[OperationContract]
bool SendTextMessage(string message);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment