如何使用WNetCancelConnection2正确关闭连接?

时间:2015-06-17 09:36:09

标签: c# windows winapi network-programming

我想在需要时访问共享并取消访问权限。 我使用以下代码:

class Program
{
    const string Share = "\\\\srv\\share";

    static void ListFiles()
    {
        foreach (var dir in Directory.EnumerateDirectories(Share))
            Console.WriteLine(dir);
    }

    static void Main(string[] args)
    {
        using (var connection = new NetworkConnection(Share, new System.Net.NetworkCredential("user", "password")))
            ListFiles();
        ListFiles();
    }
}

第一个ListFiles()调用成功。我希望第二次ListFiles()调用失败但它也会成功。如何正确取消连接?似乎WNetCancelConnection2不起作用。

这也说明了here。我想知道是否有人能让它发挥作用。

FIY这是一个网络连接类:

public class NetworkConnection : IDisposable
{
    string _networkName;

    public NetworkConnection(string networkName,
        NetworkCredential credentials)
    {
        _networkName = networkName;

        var netResource = new NetResource()
        {
            Scope = ResourceScope.GlobalNetwork,
            ResourceType = ResourceType.Disk,
            DisplayType = ResourceDisplaytype.Share,
            RemoteName = networkName
        };

        var userName = string.IsNullOrEmpty(credentials.Domain)
            ? credentials.UserName
            : string.Format(@"{0}\{1}", credentials.Domain, credentials.UserName);

        var result = WNetAddConnection2(
            netResource,
            credentials.Password,
            userName,
            0);

        if (result != 0)
        {
            throw new Win32Exception(result, "Error connecting to remote share");
        }
    }

    ~NetworkConnection()
    {
        Dispose(false);
    }

    public void Dispose()
    {
        Dispose(true);
        GC.SuppressFinalize(this);
    }

    protected virtual void Dispose(bool disposing)
    {
        WNetCancelConnection2(_networkName, 0, true);
    }

    [DllImport("mpr.dll")]
    private static extern int WNetAddConnection2(NetResource netResource,
        string password, string username, int flags);

    [DllImport("mpr.dll")]
    private static extern int WNetCancelConnection2(string name, int flags,
        bool force);
}

[StructLayout(LayoutKind.Sequential)]
public class NetResource
{
    public ResourceScope Scope;
    public ResourceType ResourceType;
    public ResourceDisplaytype DisplayType;
    public int Usage;
    public string LocalName;
    public string RemoteName;
    public string Comment;
    public string Provider;
}

public enum ResourceScope : int
{
    Connected = 1,
    GlobalNetwork,
    Remembered,
    Recent,
    Context
};

public enum ResourceType : int
{
    Any = 0,
    Disk = 1,
    Print = 2,
    Reserved = 8,
}

public enum ResourceDisplaytype : int
{
    Generic = 0x0,
    Domain = 0x01,
    Server = 0x02,
    Share = 0x03,
    File = 0x04,
    Group = 0x05,
    Network = 0x06,
    Root = 0x07,
    Shareadmin = 0x08,
    Directory = 0x09,
    Tree = 0x0a,
    Ndscontainer = 0x0b
}

2 个答案:

答案 0 :(得分:1)

我遇到了同样的问题,遗憾的是,他们找不到合适的解决方案。我只能描述我的研究结果。

此方法使用了“net use / delete”命令。它工作正常并删除网络连接。您可以在命令窗口中调用“net use”来检查。连接已关闭,但凭据仍在某处缓存。

因此,此问题的主要原因是缓存凭据。你可以尝试在运行窗口中调用'control keymgr.dll'的Credential Manager中找到它们,但在我的情况下它们没有显示。凭据可能由explorer.exe缓存,因此您可以尝试打开任务管理器并重新启动它。

摆脱它们的唯一可靠方法是重启Workstation Service  使用'net stop''net start'命令。

答案 1 :(得分:1)

我遇到了类似的问题。我在代码中等了60秒,然后网络连接真的关闭了。 Paulik是对的,凭证被缓存到某个地方,这使我与另一个凭证的下一次连接失败。但是,如果我使用WNetCancelConnection2(pathname,flag,false)关闭并等待60秒,我的新凭证将正常工作。不知道原因,但它只是有效。