本文整理汇总了C#中Socket.RecvAll方法的典型用法代码示例。如果您正苦于以下问题:C# Socket.RecvAll方法的具体用法?C# Socket.RecvAll怎么用?C# Socket.RecvAll使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Socket
的用法示例。
在下文中一共展示了Socket.RecvAll方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: FrontendHandler
protected override void FrontendHandler(Socket socket, IOMultiPlex revents)
{
Queue<byte[]> msgs = socket.RecvAll();
_messageProcessor(msgs.Dequeue(), msgs);
}
示例2: Dump
/// <summary>
/// Prints all pending messages to the console.
/// </summary>
/// <param name="socket">ZMQ Socket</param>
/// <param name="encoding">Encoding to use for message decoding</param>
public static void Dump(Socket socket, Encoding encoding) {
if (socket == null) {
throw new ArgumentNullException("socket");
}
Console.WriteLine(new String('-', 38));
foreach (byte[] msg in socket.RecvAll()) {
Console.Write("[{0}] ", String.Format("{0:d3}", msg.Length));
if (msg.Length == 17 && msg[0] == 0) {
Console.WriteLine(DecodeUUID(msg).Substring(1));
}
else {
Console.WriteLine(encoding.GetString(msg, 0, msg.Length));
}
}
}