TKMP.DLLのダウンロード

ログオン時の受信文字列に対する次の送信文字列をセットします

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

Syntax

C#
bool ISmtpLogon.Connection(
	string Receive,
	out string Send,
	out string LogMessage
)
Visual Basic (Declaration)
Private Function Connection ( _
	Receive As String, _
	<OutAttribute> ByRef Send As String, _
	<OutAttribute> ByRef LogMessage As String _
) As Boolean Implements ISmtpLogon.Connection

Parameters

Receive
Type: System..::.String
受信した文字列
Send
Type: System..::.String %
送信文字列が返されます(送信文字列無しの時はNull)
LogMessage
Type: System..::.String %
通信ログで表示する文字列が返されます。通常パスワードなど非表示としたい通信内容の場合に内容がセットされます。Sendを通信ログとする場合はNullがセットされます

Return Value

ログオン処理を継続する場合にtrueを返します

Implements

ISmtpLogon..::.Connection(String, String%, String%)

See Also