Merge pull request #347 from JamesB7/master
[mono.git] / mcs / class / System / System.Net / FtpStatusCode.cs
index c8d2508b4c0502ca78f44e3940ff6b7d2286d529..516124fa3e0daaba57c934e073d433045c86b48f 100644 (file)
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-#if NET_2_0
-
 namespace System.Net
 {
        public enum FtpStatusCode
        {
                Undefined = 0,
                RestartMarker = 110,
-               ServiceTemporarilyNotAvalaible = 120,
+               ServiceTemporarilyNotAvailable = 120,
                DataAlreadyOpen = 125,
                OpeningData = 150,
                CommandOK = 200,
@@ -55,10 +53,10 @@ namespace System.Net
                SendPasswordCommand = 331,
                NeedLoginAccount = 332,
                FileCommandPending = 350,
-               ServiceNotAvalaible = 421,
+               ServiceNotAvailable = 421,
                CantOpenData = 425,
                ConnectionClosed = 426,
-               ActionNotTakenFileUnavalaibleOrBusy = 450,
+               ActionNotTakenFileUnavailableOrBusy = 450,
                ActionAbortedLocalProcessingError = 451,
                ActionNotTakenInsufficientSpace = 452,
                CommandSyntaxError = 500,
@@ -67,12 +65,11 @@ namespace System.Net
                BadCommandSequence = 503,
                NotLoggedIn = 530,
                AccountNeeded = 532,
-               ActionNotTakenFileUnavalaible = 550,
+               ActionNotTakenFileUnavailable = 550,
                ActionAbortedUnknownPageType = 551,
                FileActionAborted = 552,
                ActionNotTakenFilenameNotAllowed = 553
        }
 }
 
-#endif