Skip to content

Instantly share code, notes, and snippets.

@Tapanila
Created August 18, 2012 16:05
Show Gist options
  • Save Tapanila/3388018 to your computer and use it in GitHub Desktop.
Save Tapanila/3388018 to your computer and use it in GitHub Desktop.
using System.ServiceModel;
namespace WcfServiceExample
{
[ServiceContract]
public interface IService1
{
[OperationContract]
bool SavePicture(byte[] picture, string pictureName);
[OperationContract]
byte[] RetrievePicture(string pictureName);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment