I have a ras connection and I need disconnect to it using C#. how I do this? Currently I'm using dotRas library to handling ras connections. Any help and differents solutions to solve it are very appreciated. Thanks in advance.

link|improve this question

79% accept rate
feedback

2 Answers

up vote 2 down vote accepted

Based on this documentation you should just call the RasHangUp function.

link|improve this answer
feedback

Using the DotRas SDK, you'd just need to get the RasConnection instance you want and call HangUp().

using System.Linq;
using DotRas;

RasConnection conn = RasConnection.GetActiveConnections().Where(o => o.EntryName == "My Entry").FirstOrDefault();
if (conn != null)
{
    conn.HangUp();
}

Hope that helps!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.