本文整理汇总了C#中IConnection.ReadLine方法的典型用法代码示例。如果您正苦于以下问题:C# IConnection.ReadLine方法的具体用法?C# IConnection.ReadLine怎么用?C# IConnection.ReadLine使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IConnection
的用法示例。
在下文中一共展示了IConnection.ReadLine方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Process
public virtual void Process(IConnection connection, SmtpCommand command)
{
if (connection.CurrentMessage == null)
{
connection.WriteResponse(new SmtpResponse(StandardSmtpResponseCode.BadSequenceOfCommands,
"Bad sequence of commands"));
return;
}
connection.CurrentMessage.SecureConnection = connection.Session.SecureConnection;
connection.WriteResponse(new SmtpResponse(StandardSmtpResponseCode.StartMailInputEndWithDot,
"End message with period"));
using (StreamWriter writer = new StreamWriter(connection.CurrentMessage.GetData(DataAccessMode.ForWriting), connection.ReaderEncoding))
{
bool firstLine = true;
do
{
string line = connection.ReadLine();
if (line != ".")
{
line = ProcessLine(line);
if (!firstLine)
writer.Write(Environment.NewLine);
writer.Write(line);
}
else
{
break;
}
firstLine = false;
} while (true);
writer.Flush();
long? maxMessageSize =
connection.Server.Behaviour.GetMaximumMessageSize(connection);
if (maxMessageSize.HasValue && writer.BaseStream.Length > maxMessageSize.Value)
{
connection.WriteResponse(
new SmtpResponse(StandardSmtpResponseCode.ExceededStorageAllocation,
"Message exceeds fixed size limit"));
}
else
{
writer.Close();
connection.Server.Behaviour.OnMessageCompleted(connection);
connection.WriteResponse(new SmtpResponse(StandardSmtpResponseCode.OK, "Mail accepted"));
connection.CommitMessage();
}
}
}
示例2: Process
public void Process(IConnection connection, SmtpCommand command)
{
if (command.Arguments.Length > 0)
{
if (connection.Session.Authenticated)
{
throw new SmtpServerException(new SmtpResponse(StandardSmtpResponseCode.BadSequenceOfCommands,
"Already authenticated"));
}
string mechanismId = command.Arguments[0];
IAuthMechanism mechanism = AuthExtensionProcessor.MechanismMap.Get(mechanismId);
if (mechanism == null)
{
throw new SmtpServerException(
new SmtpResponse(StandardSmtpResponseCode.CommandParameterNotImplemented,
"Specified AUTH mechanism not supported"));
}
if (!AuthExtensionProcessor.IsMechanismEnabled(mechanism))
{
throw new SmtpServerException(
new SmtpResponse(StandardSmtpResponseCode.AuthenticationFailure,
"Specified AUTH mechanism not allowed right now (might require secure connection etc)"));
}
IAuthMechanismProcessor authMechanismProcessor =
mechanism.CreateAuthMechanismProcessor(connection);
string initialData = null;
if (command.Arguments.Length > 1)
{
initialData = string.Join(" ", command.Arguments.Skip(1).ToArray());
}
AuthMechanismProcessorStatus status =
authMechanismProcessor.ProcessResponse(initialData);
while (status == AuthMechanismProcessorStatus.Continue)
{
string response = connection.ReadLine();
if (response == "*")
{
connection.WriteResponse(new SmtpResponse(StandardSmtpResponseCode.SyntaxErrorInCommandArguments, "Authentication aborted"));
return;
}
status = authMechanismProcessor.ProcessResponse(response);
}
if (status == AuthMechanismProcessorStatus.Success)
{
connection.WriteResponse(new SmtpResponse(StandardSmtpResponseCode.AuthenticationOK,
"Authenticated OK"));
connection.Session.Authenticated = true;
connection.Session.AuthenticationCredentials = authMechanismProcessor.Credentials;
}
else
{
connection.WriteResponse(new SmtpResponse(StandardSmtpResponseCode.AuthenticationFailure,
"Authentication failure"));
}
}
else
{
throw new SmtpServerException(new SmtpResponse(StandardSmtpResponseCode.SyntaxErrorInCommandArguments,
"Must specify AUTH mechanism as a parameter"));
}
}