当前位置: 首页>>代码示例>>C#>>正文


C# Byte.ReadBytes方法代码示例

本文整理汇总了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);
        }
开发者ID:tommybiteme,项目名称:X,代码行数:17,代码来源:UdpServer.cs

示例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;
        }
开发者ID:tommybiteme,项目名称:X,代码行数:14,代码来源:NetHelper.cs

示例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);
        }
开发者ID:tommybiteme,项目名称:X,代码行数:25,代码来源:TcpSession.cs


注:本文中的System.Byte.ReadBytes方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。