The next call to WNetAddConnection2 seems to last forever. Please note that the name of the machine is intentionally wrong - I would like it to end quickly and not be blocked forever. Is there a way to achieve similar functionality, but with a timeout?
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Runtime.InteropServices; using System.Diagnostics; namespace WindowsFormsApplication2 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } [StructLayout(LayoutKind.Sequential)] public class NETRESOURCE { public int dwScope; public int dwType; public int dwDisplayType; public int dwUsage; public string LocalName; public string RemoteName; public string Comment; public string Provider; } [DllImport("mpr.dll")] public static extern int WNetAddConnection2(NETRESOURCE netResource, string password, string username, int flags); private void Form1_Load(object sender, EventArgs e) { NETRESOURCE myResource = new NETRESOURCE(); myResource.dwScope = 0; myResource.dwType = 0;
source share