Aspose.Email.Examples.CSharp.Email.POP3.SSLEnabledPOP3Server.Run C# (CSharp) Метод

Run() публичный статический Метод

public static Run ( ) : void
Результат void
        public static void Run()
        {
            //ExStart:SSLEnabledPOP3Server
            // Create an instance of the Pop3Client class
            Pop3Client client = new Pop3Client();
            // Specify host, username and password, Port and  SecurityOptions for your client
            client.Host = "pop.gmail.com";
            client.Username = "[email protected]";
            client.Password = "your.password";
            client.Port = 995;
            client.SecurityOptions = SecurityOptions.Auto; 
            Console.WriteLine(Environment.NewLine + "Connecting to POP3 server using SSL.");
            //ExEnd:SSLEnabledPOP3Server
        }
    }
SSLEnabledPOP3Server