1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871
|
//
// System.Net.FtpWebRequest.cs
//
// Authors:
// Carlos Alberto Cortez (calberto.cortez@gmail.com)
//
// (c) Copyright 2006 Novell, Inc. (http://www.novell.com)
//
using System;
using System.IO;
using System.Net.Sockets;
using System.Text;
using System.Threading;
#if NET_2_0
using System.Net.Cache;
#endif
#if NET_2_0
namespace System.Net
{
[Serializable]
public class FtpWebRequest : WebRequest
{
Uri requestUri;
ServicePoint servicePoint;
Socket dataSocket;
NetworkStream controlStream;
StreamReader controlReader;
NetworkCredential credentials;
IPHostEntry hostEntry;
IPEndPoint localEndPoint;
IWebProxy proxy;
int timeout = 100000;
int rwTimeout = 300000;
long offset;
bool binary = true;
bool enableSsl;
bool requestInProgress;
bool usePassive = true;
bool keepAlive = true;
bool aborted;
bool transferCompleted;
bool gotRequestStream;
string method = WebRequestMethods.Ftp.DownloadFile;
string renameTo;
object locker = new object ();
FtpStatusCode statusCode;
string statusDescription = String.Empty;
FtpAsyncResult asyncRead;
FtpAsyncResult asyncWrite;
FtpWebResponse ftpResponse;
Stream requestStream = Stream.Null;
const string UserCommand = "USER";
const string PasswordCommand = "PASS";
const string TypeCommand = "TYPE";
const string PassiveCommand = "PASV";
const string PortCommand = "PORT";
const string AbortCommand = "ABOR";
const string AuthCommand = "AUTH";
const string RestCommand = "REST";
const string RenameFromCommand = "RNFR";
const string RenameToCommand = "RNTO";
const string EOL = "\r\n"; // Special end of line
// sorted commands
static readonly string [] supportedCommands = new string [] {
WebRequestMethods.Ftp.AppendFile, // APPE
WebRequestMethods.Ftp.DeleteFile, // DELE
WebRequestMethods.Ftp.ListDirectoryDetails, // LIST
WebRequestMethods.Ftp.GetDateTimestamp, // MDTM
WebRequestMethods.Ftp.MakeDirectory, // MKD
WebRequestMethods.Ftp.ListDirectory, // NLST
WebRequestMethods.Ftp.PrintWorkingDirectory, // PWD
WebRequestMethods.Ftp.Rename, // RENAME
WebRequestMethods.Ftp.DownloadFile, // RETR
WebRequestMethods.Ftp.RemoveDirectory, // RMD
WebRequestMethods.Ftp.GetFileSize, // SIZE
WebRequestMethods.Ftp.UploadFile, // STOR
WebRequestMethods.Ftp.UploadFileWithUniqueName // STUR
};
internal FtpWebRequest (Uri uri)
{
this.requestUri = uri;
this.proxy = GlobalProxySelection.Select;
}
public override string ContentType {
get {
throw new NotSupportedException ();
}
set {
throw new NotSupportedException ();
}
}
public override long ContentLength {
get {
return 0;
}
set {
// DO nothing
}
}
public long ContentOffset {
get {
return offset;
}
set {
CheckRequestStarted ();
if (value < 0)
throw new ArgumentOutOfRangeException ();
offset = value;
}
}
public override ICredentials Credentials {
get {
return credentials;
}
set {
CheckRequestStarted ();
if (value == null)
throw new ArgumentNullException ();
if (!(value is NetworkCredential))
throw new ArgumentException ();
credentials = value as NetworkCredential;
}
}
public bool EnableSsl {
get {
return enableSsl;
}
set {
CheckRequestStarted ();
enableSsl = value;
}
}
public bool KeepAlive {
get {
return keepAlive;
}
set {
CheckRequestStarted ();
keepAlive = value;
}
}
public override string Method {
get {
return method;
}
set {
CheckRequestStarted ();
if (value == null)
throw new ArgumentNullException ("method");
if (value.Length == 0 || Array.BinarySearch (supportedCommands, value) < 0)
throw new ArgumentException ("Method not supported", "value");
method = value;
}
}
public override bool PreAuthenticate {
get {
throw new NotSupportedException ();
}
set {
throw new NotSupportedException ();
}
}
public override IWebProxy Proxy {
get {
return proxy;
}
set {
CheckRequestStarted ();
if (value == null)
throw new ArgumentNullException ();
proxy = value;
}
}
public int ReadWriteTimeout {
get {
return rwTimeout;
}
set {
CheckRequestStarted ();
if (value < - 1)
throw new ArgumentOutOfRangeException ();
else
rwTimeout = value;
}
}
public string RenameTo {
get {
return renameTo;
}
set {
CheckRequestStarted ();
if (value == null || value.Length == 0)
throw new ArgumentException ("RenameTo value can't be null or empty", "RenameTo");
renameTo = value;
}
}
public override Uri RequestUri {
get {
return requestUri;
}
}
public ServicePoint ServicePoint {
get {
return GetServicePoint ();
}
}
public bool UsePassive {
get {
return usePassive;
}
set {
CheckRequestStarted ();
usePassive = value;
}
}
public bool UseBinary {
get {
return binary;
} set {
CheckRequestStarted ();
binary = value;
}
}
public override int Timeout {
get {
return timeout;
}
set {
CheckRequestStarted ();
if (value < -1)
throw new ArgumentOutOfRangeException ();
else
timeout = value;
}
}
string DataType {
get {
return binary ? "I" : "A";
}
}
ServicePoint GetServicePoint ()
{
if (servicePoint == null)
servicePoint = ServicePointManager.FindServicePoint (requestUri, proxy);
return servicePoint;
}
// Probably move some code of command connection here
bool ResolveHost ()
{
hostEntry = GetServicePoint ().HostEntry;
if (hostEntry == null)
return false;
return true;
}
public override void Abort ()
{
FtpStatusCode status = SendCommand (AbortCommand);
if (status != FtpStatusCode.ClosingData)
throw CreateExceptionFromResponse (); // Probably ignore it by now
aborted = true;
if (asyncRead != null) {
FtpAsyncResult r = asyncRead;
WebException wexc = new WebException ("Request aborted", WebExceptionStatus.RequestCanceled);
r.SetCompleted (false, wexc);
r.DoCallback ();
asyncRead = null;
}
if (asyncWrite != null) {
FtpAsyncResult r = asyncWrite;
WebException wexc = new WebException ("Request aborted", WebExceptionStatus.RequestCanceled);
r.SetCompleted (false, wexc);
r.DoCallback ();
asyncWrite = null;
}
}
void ProcessRequest ()
{
ftpResponse = new FtpWebResponse (requestUri, method, keepAlive);
if (!ResolveHost ()) {
SetResponseError (new WebException ("The remote server name could not be resolved: " + requestUri,
null, WebExceptionStatus.NameResolutionFailure, ftpResponse));
return;
}
if (!OpenControlConnection ())
return;
switch (method) {
// Open data connection and receive data
case WebRequestMethods.Ftp.DownloadFile:
case WebRequestMethods.Ftp.ListDirectory:
case WebRequestMethods.Ftp.ListDirectoryDetails:
DownloadData ();
break;
// Open data connection and send data
case WebRequestMethods.Ftp.AppendFile:
case WebRequestMethods.Ftp.UploadFile:
case WebRequestMethods.Ftp.UploadFileWithUniqueName:
UploadData ();
break;
// Get info from control connection
case WebRequestMethods.Ftp.GetFileSize:
case WebRequestMethods.Ftp.GetDateTimestamp:
GetInfoFromControl ();
break;
case WebRequestMethods.Ftp.Rename:
RenameFile ();
break;
case WebRequestMethods.Ftp.MakeDirectory:
ProcessSimpleRequest ();
break;
default: // What to do here?
throw new Exception ("Support for command not implemented yet");
}
}
// Currently I use this only for MKD
// (Commands that don't need any parsing in command connection
// for open data connection)
void ProcessSimpleRequest ()
{
if (SendCommand (method, requestUri.LocalPath) != FtpStatusCode.PathnameCreated) {
asyncRead.SetCompleted (true, CreateExceptionFromResponse ());
return;
}
asyncRead.SetCompleted (true, ftpResponse);
}
// It would be good to have a SetCompleted method for
// settting asyncRead as completed (some code is here and there, repeated)
void GetInfoFromControl ()
{
FtpStatusCode status = SendCommand (method, requestUri.LocalPath);
if (status != FtpStatusCode.FileStatus) {
asyncRead.SetCompleted (true, CreateExceptionFromResponse ());
return;
}
string desc = statusDescription;
Console.WriteLine ("Desc = " + desc);
if (method == WebRequestMethods.Ftp.GetFileSize) {
int i, len;
long size;
for (i = 4, len = 0; i < desc.Length && Char.IsDigit (desc [i]); i++, len++)
;
if (len == 0) {
asyncRead.SetCompleted (true, new WebException ("Bad format for server response in " + method));
return;
}
if (!Int64.TryParse (desc.Substring (4, len), out size)) {
asyncRead.SetCompleted (true, new WebException ("Bad format for server response in " + method));
return;
}
ftpResponse.contentLength = size;
asyncRead.SetCompleted (true, ftpResponse);
return;
}
if (method == WebRequestMethods.Ftp.GetDateTimestamp) {
// Here parse the format the date time (different formats)
asyncRead.SetCompleted (true, ftpResponse);
return;
}
throw new Exception ("You shouldn't reach this point");
}
void RenameFile ()
{
FtpStatusCode status = SendCommand (RenameFromCommand, requestUri.LocalPath);
if (status == FtpStatusCode.FileCommandPending) {
// Pass an empty string if RenameTo wasn't specified
status = SendCommand (RenameToCommand, renameTo != null ? renameTo : String.Empty);
if (status == FtpStatusCode.FileActionOK) {
ftpResponse.UpdateStatus (statusCode, statusDescription);
asyncRead.SetCompleted (true, ftpResponse);
return;
}
}
ftpResponse.UpdateStatus (statusCode, statusDescription);
asyncRead.SetCompleted (true, CreateExceptionFromResponse ());
}
void UploadData ()
{
if (gotRequestStream) {
if (GetResponseCode () != FtpStatusCode.ClosingData)
asyncRead.SetCompleted (true, CreateExceptionFromResponse ());
return;
}
if (!OpenDataConnection ())
return;
gotRequestStream = true;
requestStream = new FtpDataStream (this, dataSocket, false);
asyncWrite.SetCompleted (true, requestStream);
}
void DownloadData ()
{
FtpStatusCode status;
// Handle content offset
if (offset > 0) {
status = SendCommand (RestCommand, offset.ToString ());
if (status != FtpStatusCode.FileCommandPending) {
asyncRead.SetCompleted (true, CreateExceptionFromResponse ());
return;
}
}
if (!OpenDataConnection ())
return;
ftpResponse.Stream = new FtpDataStream (this, dataSocket, true);
ftpResponse.StatusDescription = statusDescription;
ftpResponse.StatusCode = statusCode;
asyncRead.SetCompleted (true, ftpResponse);
}
public override IAsyncResult BeginGetResponse (AsyncCallback callback, object state)
{
if (aborted)
throw new WebException ("Request was previously aborted.");
Monitor.Enter (this);
if (asyncRead != null) {
Monitor.Exit (this);
throw new InvalidOperationException ();
}
requestInProgress = true;
asyncRead = new FtpAsyncResult (callback, state);
Thread thread = new Thread (ProcessRequest);
thread.Start ();
Monitor.Exit (this);
return asyncRead;
}
public override WebResponse EndGetResponse (IAsyncResult asyncResult)
{
if (asyncResult == null)
throw new ArgumentNullException ("asyncResult");
if (!(asyncResult is FtpAsyncResult) || asyncResult != asyncRead)
throw new ArgumentException ("asyncResult");
FtpAsyncResult asyncFtpResult = (FtpAsyncResult) asyncResult;
if (!asyncFtpResult.WaitUntilComplete (timeout, false)) {
Abort ();
throw new WebException ("Transfer timed out.", WebExceptionStatus.Timeout);
}
if (asyncFtpResult.GotException)
throw asyncFtpResult.Exception;
return asyncFtpResult.Response;
}
public override WebResponse GetResponse ()
{
IAsyncResult asyncResult = BeginGetResponse (null, null);
return EndGetResponse (asyncResult);
}
public override IAsyncResult BeginGetRequestStream (AsyncCallback callback, object state)
{
if (aborted)
throw new WebException ("Request was previously aborted.");
if (method != WebRequestMethods.Ftp.UploadFile && method != WebRequestMethods.Ftp.UploadFileWithUniqueName &&
method != WebRequestMethods.Ftp.AppendFile)
throw new ProtocolViolationException ();
lock (locker) {
if (asyncWrite != null || asyncRead != null)
throw new InvalidOperationException ();
requestInProgress = true;
asyncWrite = new FtpAsyncResult (callback, state);
Thread thread = new Thread (ProcessRequest);
thread.Start ();
return asyncWrite;
}
}
public override Stream EndGetRequestStream (IAsyncResult asyncResult)
{
if (asyncResult == null)
throw new ArgumentNullException ("asyncResult");
if (!(asyncResult is FtpAsyncResult))
throw new ArgumentException ("asyncResult");
FtpAsyncResult res = (FtpAsyncResult) asyncResult;
if (!res.WaitUntilComplete (timeout, false)) {
Abort ();
throw new WebException ("Request timeod out");
}
if (res.GotException)
throw res.Exception;
return res.Stream;
}
public override Stream GetRequestStream ()
{
IAsyncResult asyncResult = BeginGetRequestStream (null, null);
return EndGetRequestStream (asyncResult);
}
void CheckRequestStarted ()
{
if (requestInProgress)
throw new InvalidOperationException ("request in progress");
}
bool OpenControlConnection ()
{
Socket sock = null;
foreach (IPAddress address in hostEntry.AddressList) {
sock = new Socket (address.AddressFamily, SocketType.Stream, ProtocolType.Tcp);
try {
sock.Connect (new IPEndPoint (address, requestUri.Port));
localEndPoint = (IPEndPoint) sock.LocalEndPoint;
break;
} catch (SocketException e) {
sock.Close ();
sock = null;
}
}
// Couldn't connect to any address
if (sock == null) {
SetResponseError (new WebException ("Unable to connect to remote server", null,
WebExceptionStatus.UnknownError, ftpResponse));
return false;
}
controlStream = new NetworkStream (sock);
controlReader = new StreamReader (controlStream, Encoding.ASCII);
if (!Authenticate ()) {
SetResponseError (CreateExceptionFromResponse ());
return false;
}
return true;
}
// Probably we could do better having here a regex
Socket SetupPassiveConnection ()
{
// Current response string
string response = statusDescription;
if (response.Length < 4)
return null;
// Look for first digit after code
int i;
for (i = 3; i < response.Length && !Char.IsDigit (response [i]); i++)
;
if (i >= response.Length)
return null;
// Get six elements
string [] digits = response.Substring (i).Split (new char [] {','}, 6);
if (digits.Length != 6)
return null;
// Clean non-digits at the end of last element
int j;
for (j = digits [5].Length - 1; j >= 0 && !Char.IsDigit (digits [5][j]); j--)
;
if (j < 0)
return null;
digits [5] = digits [5].Substring (0, j + 1);
IPAddress ip;
try {
ip = IPAddress.Parse (String.Join (".", digits, 0, 4));
} catch (FormatException) {
return null;
}
// Get the port
int p1, p2, port;
if (!Int32.TryParse (digits [4], out p1) || !Int32.TryParse (digits [5], out p2))
return null;
port = (p1 << 8) + p2; // p1 * 256 + p2
//port = p1 * 256 + p2;
if (port < IPEndPoint.MinPort || port > IPEndPoint.MaxPort)
return null;
IPEndPoint ep = new IPEndPoint (ip, port);
Socket sock = new Socket (ep.AddressFamily, SocketType.Stream, ProtocolType.Tcp);
try {
sock.Connect (ep);
} catch (SocketException exc) {
sock.Close ();
return null;
}
return sock;
}
Exception CreateExceptionFromResponse ()
{
WebException exc = new WebException ("Server returned an error: " + statusDescription, null,
WebExceptionStatus.ProtocolError, ftpResponse);
return exc;
}
// Here we could also get a server error, so be cautious
internal void SetTransferCompleted ()
{
if (transferCompleted)
return;
transferCompleted = true;
FtpStatusCode status = GetResponseCode ();
ftpResponse.StatusCode = status;
ftpResponse.StatusDescription = statusDescription;
}
internal void SetResponseError (Exception exc)
{
FtpAsyncResult ar = asyncRead;
if (ar == null)
ar = asyncWrite;
ar.SetCompleted (true, exc);
ar.DoCallback ();
}
Socket InitDataConnection ()
{
FtpStatusCode status;
if (usePassive) {
status = SendCommand (PassiveCommand);
if (status != FtpStatusCode.EnteringPassive) {
SetResponseError (CreateExceptionFromResponse ());
return null;
}
Socket retval = SetupPassiveConnection ();
if (retval == null)
SetResponseError (new WebException ("Couldn't setup passive connection"));
return retval;
}
// Open a socket to listen the server's connection
Socket sock = new Socket (AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
try {
sock.Bind (new IPEndPoint (localEndPoint.Address, 0));
sock.Listen (1); // We only expect a connection from server
} catch (SocketException e) {
sock.Close ();
SetResponseError (new WebException ("Couldn't open listening socket on client", e));
return null;
}
IPEndPoint ep = (IPEndPoint) sock.LocalEndPoint;
string ipString = ep.Address.ToString ().Replace (".", ",");
int h1 = ep.Port >> 8; // ep.Port / 256
int h2 = ep.Port % 256;
string portParam = ipString + "," + h1 + "," + h2;
status = SendCommand (PortCommand, portParam);
if (status != FtpStatusCode.CommandOK) {
sock.Close ();
SetResponseError (CreateExceptionFromResponse ());
return null;
}
return sock;
}
bool OpenDataConnection ()
{
FtpStatusCode status;
Socket s = InitDataConnection ();
if (s == null)
return false;
// TODO - Check that this command is only used for data connection based commands
if (method != WebRequestMethods.Ftp.ListDirectory && method != WebRequestMethods.Ftp.ListDirectoryDetails) {
status = SendCommand (TypeCommand, DataType);
if (status != FtpStatusCode.CommandOK) {
SetResponseError (CreateExceptionFromResponse ());
return false;
}
}
status = SendCommand (method, requestUri.LocalPath);
if (status != FtpStatusCode.OpeningData) {
SetResponseError (CreateExceptionFromResponse ());
return false;
}
if (usePassive) {
dataSocket = s;
return true;
}
// Active connection (use Socket.Blocking to true)
Socket incoming = null;
try {
incoming = s.Accept ();
} catch (SocketException e) {
s.Close ();
if (incoming != null)
incoming.Close ();
SetResponseError (new ProtocolViolationException ("Server commited a protocol violation."));
return false;
}
s.Close ();
dataSocket = incoming;
return true;
}
// Take in count 'account' case
bool Authenticate ()
{
string username = null;
string password = null;
if (credentials != null) {
username = credentials.UserName;
password = credentials.Password;
// account = credentials.Domain;
}
if (username == null)
username = "anonymous";
if (password == null)
password = "@anonymous";
// Connect to server and get banner message
FtpStatusCode status = GetResponseCode ();
ftpResponse.BannerMessage = statusDescription;
if (status != FtpStatusCode.SendUserCommand)
return false;
status = SendCommand (UserCommand, username);
if (status == FtpStatusCode.LoggedInProceed) {
ftpResponse.WelcomeMessage = statusDescription;
return true;
}
if (status == FtpStatusCode.SendPasswordCommand) {
status = SendCommand (PasswordCommand, password);
if (status == FtpStatusCode.LoggedInProceed) {
ftpResponse.WelcomeMessage = statusDescription;
return true;
}
return false;
}
return false;
}
FtpStatusCode SendCommand (string command, params string [] parameters)
{
byte [] cmd;
string commandString = command;
if (parameters.Length > 0)
commandString += " " + String.Join (" ", parameters);
commandString += EOL;
cmd = Encoding.ASCII.GetBytes (commandString);
try {
controlStream.Write (cmd, 0, cmd.Length);
} catch (IOException) {
//controlStream.Close ();
return FtpStatusCode.ServiceNotAvailable;
}
return GetResponseCode ();
}
internal FtpStatusCode GetResponseCode ()
{
string responseString = null;
try {
responseString = controlReader.ReadLine ();
} catch (IOException exc) {
// controlReader.Close ();
}
if (responseString == null || responseString.Length < 3)
return FtpStatusCode.ServiceNotAvailable;
string codeString = responseString.Substring (0, 3);
int code;
if (!Int32.TryParse (codeString, out code))
return FtpStatusCode.ServiceNotAvailable;
statusDescription = responseString;
return statusCode = (FtpStatusCode) code;
}
}
}
#endif
|