5

以下 C# 代码在 Vista 上正常工作,但在 XP 上失败:

SocketException:提供了无效的参数。

错误代码为 10022。

XP 上的防火墙已被禁用。

using System;
using System.Net;
using System.Net.Sockets;

public class SocketTest
{
    [STAThread]
    public static void Main()
    {
        MySocket s = new MySocket();

        Console.WriteLine("done");
        Console.ReadLine();
    }

    public class MySocket : Socket
    {
        public const ushort SocketTtl = 4;
        public const string Address = "239.255.255.250";

        public IPAddress IPAddress = IPAddress.Parse(Address);

        public MySocket()
            : base(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp)
        {
            SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.Broadcast, true);
            SetSocketOption(SocketOptionLevel.IP, SocketOptionName.MulticastTimeToLive, SocketTtl);

            // This line throws SocketException: An invalid argument was supplied
            // SocketException.ErrorCode: 10022
            SetSocketOption(SocketOptionLevel.IP, SocketOptionName.AddMembership, new MulticastOption(IPAddress));
        }
    }
}

有任何想法吗?

4

1 回答 1

8

在设置 SocketOptionName.AddMembership 选项之前,您需要将套接字绑定到接口。

编辑:刚刚在 MSDN 文档中验证了这一点(尽管它只说最高 NT4):

Windows 98、Windows NT 4.0 平台 注意:在使用 AddMembership 作为 optionName 参数之前,您必须调用 Bind 方法。

于 2009-01-12T20:48:16.633 回答