本文整理汇总了C#中System.Byte.ReadBytes方法的典型用法代码示例。如果您正苦于以下问题:C# Byte.ReadBytes方法的具体用法?C# Byte.ReadBytes怎么用?C# Byte.ReadBytes使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Byte
的用法示例。
在下文中一共展示了Byte.ReadBytes方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Receive
/// <summary>接收数据</summary>
/// <returns></returns>
public override Byte[] Receive()
{
if (Disposed) throw new ObjectDisposedException(GetType().Name);
if (!Open()) return null;
var buf = new Byte[1024 * 2];
var count = Receive(buf, 0, buf.Length);
if (count < 0) return null;
if (count == 0) return new Byte[0];
//if (StatReceive != null) StatReceive.Increment(count);
return buf.ReadBytes(0, count);
}
示例2: GetMac
/// <summary>根据IP地址获取MAC地址</summary>
/// <param name="ip"></param>
/// <returns></returns>
public static Byte[] GetMac(this IPAddress ip)
{
// 考虑到IPv6是16字节,不确定SendARP是否支持IPv6
var len = 16;
var buf = new Byte[16];
var rs = SendARP(ip.GetAddressBytes().ToUInt32(), 0, buf, ref len);
if (rs != 0 || len <= 0) return null;
if (len != buf.Length) buf = buf.ReadBytes(0, len);
return buf;
}
示例3: Receive
/// <summary>接收数据</summary>
/// <returns>收到的数据。如果没有数据返回0长度数组,如果出错返回null</returns>
public override Byte[] Receive()
{
if (!Open()) return null;
var size = 1024 * 2;
//// 报文模式调整缓冲区大小。还差这么多数据就足够一个报文
//var ps = Stream as PacketStream;
//if (ps != null && ps.Size > 0) size = ps.Size;
var buf = new Byte[size];
var count = Receive(buf, 0, buf.Length);
if (count < 0) return null;
if (count == 0) return new Byte[0];
LastTime = DateTime.Now;
//if (StatReceive != null) StatReceive.Increment(count);
if (count == buf.Length) return buf;
return buf.ReadBytes(0, count);
}