Plane.Sdk3/PlaneGcsSdk.Contract.DtuClient_Shared/BasedOnEhNetUdpDtuServiceConnection_Net.cs
2017-02-27 02:02:19 +08:00

33 lines
689 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#if !NETFX_CORE
using System;
using System.Net;
using System.Net.Sockets;
using System.Security.Cryptography;
using System.Text;
using System.Threading.Tasks;
namespace EHangGcsSdk.Contract.DtuClient
{
public partial class BasedOnEhNetUdpDtuServiceConnection
{
private TcpClient _tcpClient;
/// <summary>
/// 登陆到EhNet获取随机码后再登陆Dtu透传服务端。
/// </summary>
/// <returns></returns>
public override async Task OpenAsync()
{
//
}
public override void Close()
{
_tcpClient.Close();
base.Close();
}
}
}
#endif