TKMP.DLLのダウンロード

SMTPクライアントクラスのインスタンスを初期化します

Namespace:  TKMP.Net
Assembly:  TKMP (TKMP.dll 内) バージョン: 3.1.0.0

Syntax

C#
public SmtpClient(
	string HostName,
	int Port,
	ISmtpLogon SmtpLogon
)
Visual Basic (Declaration)
Public Sub New ( _
	HostName As String, _
	Port As Integer, _
	SmtpLogon As ISmtpLogon _
)

Parameters

HostName
Type: System..::.String
接続先のホスト名
Port
Type: System..::.Int32
接続先サーバーのポート番号
SmtpLogon
Type: TKMP.Net..::.ISmtpLogon
ログオン処理を行うISmtpLogonクラス(nullを指定するとログオン処理は行われません)

Remarks

クラスのインスタンスの作成には接続先を示すIPアドレス、ポート番号及び、接続時の手順を処理するためのISmtpLogonインターフェイスを持つクラスが必要です

See Also