예제 #1
0
        public static NntpMultilineResponse Over(this INntpConnection connection, Range range)
        {
            var command = string.Format("OVER {0}", range);

            return connection.ExecuteMultilineCommand(command, 224);
        }
예제 #2
0
        public static NntpMultilineResponse Hdr(this INntpConnection connection, string field, Range range)
        {
            var command = string.Format("HDR {0} {1}", field, range);

            return connection.ExecuteMultilineCommand(command, 225);
        }