Ejemplo n.º 1
0
        public static RasError Connect(out RasEntry entry)
        {
            MakeReg(); // int adında bir bağlantı yaratır.

            entry = ExistingEntry("int");

            if (entry == null)
            {
                return RasError.DeviceNameNotFound;
            }

            // entry.RasStatus += new RasNotificationHandler(entry_RasStatus);

            return entry.Dial(false);
        }