| 1234567891011121314151617 |
- using Universal;
- namespace EEMSClientCore;
- public partial class HubBase : IClientCaller
- {
- Task<Guid> IClientCaller.RegisterDevice(DeviceInfo deviceInfo)
- {
- this.Invoke("RegisterDevice", deviceInfo, out Guid guid);
- return Task.FromResult(guid);
- }
- Task<bool> IClientCaller.FilePack(Guid guid, byte[] buffer, int current, int total)
- {
- return this.Send("FilePack", guid, buffer, current, total);
- }
- }
|