Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/api-snapshot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormonojenkins <jo.shields+jenkins@xamarin.com>2018-11-17 02:10:20 +0300
committermonojenkins <jo.shields+jenkins@xamarin.com>2018-11-17 02:10:20 +0300
commit1adf2369ecb9ce9ec20a7a26a47b06545b806854 (patch)
tree08e1c4576df1be2dfc46a7b875abefb35cd06989 /profiles/monotouch/System.cs
parentc7f9fbd5c10ed91c3ee8653b249840b2b44d727c (diff)
Apply changes from https://github.com/mono/mono/pull/11674 to API snapshot
Diffstat (limited to 'profiles/monotouch/System.cs')
-rw-r--r--profiles/monotouch/System.cs21
1 files changed, 21 insertions, 0 deletions
diff --git a/profiles/monotouch/System.cs b/profiles/monotouch/System.cs
index 26408a9..14f7bfd 100644
--- a/profiles/monotouch/System.cs
+++ b/profiles/monotouch/System.cs
@@ -5731,40 +5731,55 @@ namespace System.Net
public enum HttpStatusCode
{
Accepted = 202,
+ AlreadyReported = 208,
Ambiguous = 300,
BadGateway = 502,
BadRequest = 400,
Conflict = 409,
Continue = 100,
Created = 201,
+ EarlyHints = 103,
ExpectationFailed = 417,
+ FailedDependency = 424,
Forbidden = 403,
Found = 302,
GatewayTimeout = 504,
Gone = 410,
HttpVersionNotSupported = 505,
+ IMUsed = 226,
+ InsufficientStorage = 507,
InternalServerError = 500,
LengthRequired = 411,
+ Locked = 423,
+ LoopDetected = 508,
MethodNotAllowed = 405,
+ MisdirectedRequest = 421,
Moved = 301,
MovedPermanently = 301,
MultipleChoices = 300,
+ MultiStatus = 207,
+ NetworkAuthenticationRequired = 511,
NoContent = 204,
NonAuthoritativeInformation = 203,
NotAcceptable = 406,
+ NotExtended = 510,
NotFound = 404,
NotImplemented = 501,
NotModified = 304,
OK = 200,
PartialContent = 206,
PaymentRequired = 402,
+ PermanentRedirect = 308,
PreconditionFailed = 412,
+ PreconditionRequired = 428,
+ Processing = 102,
ProxyAuthenticationRequired = 407,
Redirect = 302,
RedirectKeepVerb = 307,
RedirectMethod = 303,
RequestedRangeNotSatisfiable = 416,
RequestEntityTooLarge = 413,
+ RequestHeaderFieldsTooLarge = 431,
RequestTimeout = 408,
RequestUriTooLong = 414,
ResetContent = 205,
@@ -5772,16 +5787,22 @@ namespace System.Net
ServiceUnavailable = 503,
SwitchingProtocols = 101,
TemporaryRedirect = 307,
+ TooManyRequests = 429,
Unauthorized = 401,
+ UnavailableForLegalReasons = 451,
+ UnprocessableEntity = 422,
UnsupportedMediaType = 415,
Unused = 306,
UpgradeRequired = 426,
UseProxy = 305,
+ VariantAlsoNegotiates = 506,
}
public partial class HttpVersion
{
+ public static readonly System.Version Unknown;
public static readonly System.Version Version10;
public static readonly System.Version Version11;
+ public static readonly System.Version Version20;
public HttpVersion() { }
}
[System.SerializableAttribute]