Xamarin.Parse.ParseException.ParseException C# (CSharp) Méthode

ParseException() private méthode

private ParseException ( int httpStatus, ParseErrorResponse resp ) : System
httpStatus int
resp ParseErrorResponse
Résultat System
        internal ParseException(int httpStatus, ParseErrorResponse resp)
            : base(resp.error)
        {
            this.ParseCode = resp.code;
            this.HttpCode = httpStatus;
        }
ParseException