新增 Mjpegplayer 用来播放 Web 流
This commit is contained in:
26
SHH.MjpegPlayer/Protocols/ICoreImagesService.cs
Normal file
26
SHH.MjpegPlayer/Protocols/ICoreImagesService.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
using CoreWCF;
|
||||
|
||||
namespace Core.WcfProtocol
|
||||
{
|
||||
/// <summary>
|
||||
/// CoreImagesService 接口
|
||||
/// </summary>
|
||||
[ServiceContract]
|
||||
public interface ICoreImagesService
|
||||
{
|
||||
/// <summary>
|
||||
/// 上传图片
|
||||
/// </summary>
|
||||
/// <param name="req"></param>
|
||||
/// <returns></returns>
|
||||
[OperationContract]
|
||||
UploadImageReply UploadImage(UploadImageRequest req);
|
||||
|
||||
/// <summary>
|
||||
/// 上传图片无返回结果
|
||||
/// </summary>
|
||||
/// <param name="req"></param>
|
||||
[OperationContract(IsOneWay = true)]
|
||||
void UploadImageOneWay(UploadImageRequest req);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user