FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects
Commit 3f418f99 authored by Dr Adam Thorn's avatar Dr Adam Thorn
Browse files

Add classes for handling Wpkg message responses

parent a9f1c1cd
No related branches found
No related tags found
No related merge requests found
using System.ServiceModel;
namespace WpkgInstaller
{
public interface IWpkgMessageCallbackHandlerContract
{
[OperationContract(IsOneWay = true)]
void HandleResponse(WpkgMessageResponse response);
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WpkgInstaller
{
public class WpkgMessageResponse
{
public string Message { get; set; }
public WpkgMessageResponse(string msg)
{
Message = msg;
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment