How do I work with dial-up (RAS) connections in Windows using C#/.NET? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T16:48:44Z http://stackoverflow.com/feeds/question/722805 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/722805/how-do-i-work-with-dial-up-ras-connections-in-windows-using-c-net 1 How do I work with dial-up (RAS) connections in Windows using C#/.NET? Noffie 2009-04-06T19:28:46Z 2009-07-26T00:17:45Z <p>I need to be able to connect, disconnect, and re-connect a dial-up networking connection in a C# .NET Framework application. Creating the connection in the phone-book might also be useful/necessary.</p> <p>Are there any classes or libraries written for C# or .NET out there that wrap all this functionality nicely for me? Anyone have some code they would be willing to share?</p> <p><strong>Note</strong>: Application is <em>unattended</em>, like a Kiosk, and thus requiring user action is unacceptable.</p> http://stackoverflow.com/questions/722805/how-do-i-work-with-dial-up-ras-connections-in-windows-using-c-net/722891#722891 0 Answer by Austin Salonen for How do I work with dial-up (RAS) connections in Windows using C#/.NET? Austin Salonen 2009-04-06T19:47:39Z 2009-04-06T19:47:39Z <p>This is cut out from a couple different classes (some code omitted for possible privacy issues) so it may not compile with a straight copy. Hope it helps!</p> <pre><code>using System.Runtime.InteropServices; [DllImport("wininet.dll")] [return: MarshalAs(UnmanagedType.Bool)] public extern static bool InternetGetConnectedState( out int connectionDescription, int reservedValue); [DllImport("wininet.dll", SetLastError = true)] [return: MarshalAs(UnmanagedType.I4)] public static extern int InternetAttemptConnect(int dwReserved); public sealed class InternetConnection { private InternetConnection() { } public static bool IsConnected() { int connectionDescription = 0; return InternetGetConnectedState(out connectionDescription, 0); } public static int Connect() { return InternetAttemptConnect(0); } } </code></pre> http://stackoverflow.com/questions/722805/how-do-i-work-with-dial-up-ras-connections-in-windows-using-c-net/722907#722907 0 Answer by Arnshea for How do I work with dial-up (RAS) connections in Windows using C#/.NET? Arnshea 2009-04-06T19:50:49Z 2009-04-06T19:50:49Z <p>One way to do this is through Interop around RAS. RasDialDlg() can be used to open a dial-up networking connection without displaying the dialog box. Use RasHangUp() to disconnect.</p> <p>RasEnumConnections() can be used to list available connections.</p> <p>The dll is Rasapi32.dll - headers are in ras.h and raserror.h</p> http://stackoverflow.com/questions/722805/how-do-i-work-with-dial-up-ras-connections-in-windows-using-c-net/732915#732915 3 Answer by Jeff Winn for How do I work with dial-up (RAS) connections in Windows using C#/.NET? Jeff Winn 2009-04-09T05:22:18Z 2009-04-09T05:22:18Z <p>Check out the DotRas project on CodePlex.com, it has the entire API completed.</p> <p><a href="http://www.codeplex.com/DotRas" rel="nofollow">http://www.codeplex.com/DotRas</a></p> http://stackoverflow.com/questions/722805/how-do-i-work-with-dial-up-ras-connections-in-windows-using-c-net/1183165#1183165 0 Answer by carck3r for How do I work with dial-up (RAS) connections in Windows using C#/.NET? carck3r 2009-07-25T21:53:09Z 2009-07-26T00:17:45Z <pre><code>using System; using System.ComponentModel; using System.Runtime.InteropServices; namespace MenelGameAuto.Internet { class RAS { #region &lt;Fields&gt; private int rasConnectionsAmount; // ilość struktur typu RASCONN #endregion [DllImport("wininet.dll", CharSet = CharSet.Auto)] static extern bool InternetGetConnectedState( ref int lpdwFlags, int dwReserved); const int MAX_PATH = 260; const int RAS_MaxDeviceType = 16; const int RAS_MaxPhoneNumber = 128; const int RAS_MaxEntryName = 256; const int RAS_MaxDeviceName = 128; const int RAS_Connected = 0x2000; /// &lt;summary&gt; /// Wykazuje wszystkie połączenia RAS. /// &lt;/summary&gt; [DllImport("rasapi32.dll", SetLastError = true, CharSet = CharSet.Auto)] private static extern int RasEnumConnections([In, Out] RASCONN[] lprasconn, ref int lpcb,ref int lpcConnections); [DllImport("rasapi32.dll", SetLastError = true, CharSet = CharSet.Auto)] static extern uint RasHangUp(IntPtr hRasConn); [DllImport("RASAPI32", SetLastError = true, CharSet = CharSet.Auto)] static extern int RasGetConnectStatus(IntPtr hrasconn, ref RASCONNSTATUS lprasconnstatus); [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Auto)] struct RASCONN { public int dwSize; public IntPtr hrasconn; [MarshalAs(UnmanagedType.ByValTStr, SizeConst = RAS_MaxEntryName + 1)] public string szEntryName; [MarshalAs(UnmanagedType.ByValTStr, SizeConst = RAS_MaxDeviceType + 1)] public string szDeviceType; [MarshalAs(UnmanagedType.ByValTStr, SizeConst = RAS_MaxDeviceName + 1)] public string szDeviceName; [MarshalAs(UnmanagedType.ByValTStr, SizeConst = MAX_PATH)] public string szPhonebook; public int dwSubEntry; } [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Auto)] struct RASCONNSTATUS { public int dwSize; public int rasconnstate; public int dwError; [MarshalAs(UnmanagedType.ByValTStr, SizeConst = RAS_MaxDeviceType + 1)] public string szDeviceType; [MarshalAs(UnmanagedType.ByValTStr, SizeConst = RAS_MaxDeviceName + 1)] public string szDeviceName; [MarshalAs(UnmanagedType.ByValTStr, SizeConst = RAS_MaxPhoneNumber + 1)] public string szPhoneNumber; } /// &lt;summary&gt; /// Pobranie wszystkich połączeń RAS. /// &lt;/summary&gt; /// &lt;returns&gt;Struktury połączeń RAS&lt;/returns&gt; private RASCONN[] GetRasConnections() { // Stworzenie tablicy, którą później należy przekazać funkcjom int rasEnumReturn; RASCONN[] rasconnStructs = new RASCONN[256]; rasconnStructs.Initialize(); // inicjalizacja wszystkich pól struktury rasconnStructs[0].dwSize = Marshal.SizeOf(typeof(RASCONN)); // inicjalizacja pierwszego pola pierwszej struktury na wartość wielkości tej struktury int sizeOfRasconnStruct = rasconnStructs[0].dwSize * rasconnStructs.Length; // wielkość pojedynczej struktury * ilosc // Wywołanie RasEnumConnections do zdobycia wszystkich aktywnych połączeń RAS rasEnumReturn = RasEnumConnections(rasconnStructs, ref sizeOfRasconnStruct, ref rasConnectionsAmount); // jeżeli RasEnumConnections nie zwróciło ERROR_SUCCESS if (rasEnumReturn != 0) throw new Win32Exception(rasEnumReturn); return rasconnStructs; } /// &lt;summary&gt; /// Rozłącza internet. /// &lt;/summary&gt; public void Disconnect() { RASCONN[] rasStructs = GetRasConnections(); // Przejście przez każdą strukturę RASCONN for (int i = 0; i &lt; rasConnectionsAmount; i++) { // Pobranie pojedynczej struktury RASCONN rStruct = rasStructs[i]; // Jeżeli uchwyt do połączenia wynosi 0, to brak połączenia if (rStruct.hrasconn == IntPtr.Zero) continue; // i następna struktura... // Rozłączenie... RasHangUp(rStruct.hrasconn); } } public void Connect() { // TODO } public bool IsConnected() { RASCONN[] rasStructs = GetRasConnections(); RASCONNSTATUS rasConnStatus = new RASCONNSTATUS(); rasConnStatus.dwSize = Marshal.SizeOf(typeof(RASCONNSTATUS)); for (int i = 0; i &lt; rasConnectionsAmount; ++i) { // Pobranie pojedynczej struktury RASCONN rStruct = rasStructs[i]; int statusResult = RasGetConnectStatus(rStruct.hrasconn, ref rasConnStatus); if (statusResult != 0) throw new Win32Exception(statusResult); if(rasConnStatus.rasconnstate == RAS_Connected) return true; } return false; } } } </code></pre>