
Untitled
By: a guest on
Aug 16th, 2011 | syntax:
C# | size: 0.32 KB | hits: 60 | expires: Never
[ServiceBehavior(InstanceContextMode = InstanceContextMode.PerCall)]
public class ServiceImplementation : WCFSimple.Contract.IService
{
#region IService Members
public string Hello()
{
return "Server v" + FaceRecogApp.Settings.version;
}
#endregion
}