Skip to content

Instantly share code, notes, and snippets.

@Tapanila
Created August 6, 2012 05:22
Show Gist options
  • Save Tapanila/3270985 to your computer and use it in GitHub Desktop.
Save Tapanila/3270985 to your computer and use it in GitHub Desktop.
using System.ServiceModel;
namespace SimpleWCFService
{
[ServiceContract]
public interface IService1
{
[OperationContract]
bool SaveText(string content, string blobName, string containerName);
[OperationContract]
string RetrieveText(string containerName, string blobName);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment