如何根据反序列化json字符串的响应在两个类之间切换?
我正在研究xamarin.forms . 我在API调用期间遇到问题 . I have one API for Login.
当电子邮件和密码是 valid 时,响应是
{
"status": true,
"statusCode": 200,
"response": {
"Id": "83ae239e-764e-4cef-af86-363664a3a65a",
"Email": "rutul.mehta@atozinfoway.com",
"EmailConfirmed": false,
"PasswordHash": "AFetO7VdrveGEfVZEezldzkOkh6Xs0/JR18+0QDptO56UJzY5qgwpZcpudNM2cVxFA==",
"SecurityStamp": "f062b486-f19a-4981-96a7-0fc72f17e99f",
"PhoneNumber": null,
"PhoneNumberConfirmed": false,
"TwoFactorEnabled": false,
"LockoutEndDateUtc": null,
"LockoutEnabled": true,
"AccessFailedCount": 0,
"UserName": "rutul.mehta@atozinfoway.com",
"UserId": 5,
"Name": "Rutul",
"ZipCode": null,
"CountryId": null,
"IsDeleted": false,
"CreatedDate": "2017-08-23T13:41:22"
}
}
Json到C#类是:
public class Response
{
public string Id { get; set; }
public string Email { get; set; }
public bool EmailConfirmed { get; set; }
public string PasswordHash { get; set; }
public string SecurityStamp { get; set; }
public object PhoneNumber { get; set; }
public bool PhoneNumberConfirmed { get; set; }
public bool TwoFactorEnabled { get; set; }
public object LockoutEndDateUtc { get; set; }
public bool LockoutEnabled { get; set; }
public int AccessFailedCount { get; set; }
public string UserName { get; set; }
public int UserId { get; set; }
public string Name { get; set; }
public object ZipCode { get; set; }
public object CountryId { get; set; }
public bool IsDeleted { get; set; }
public string CreatedDate { get; set; }
}
public class RootObject
{
public bool status { get; set; }
public int statusCode { get; set; }
public Response response { get; set; }
}
在具有返回类型“响应”的属性下面的“RootObject”类中
公众回应回复{get;组; }
当电子邮件和密码为 invalid 时,响应为:
{
"status": false,
"statusCode": 203,
"response": "Invalid Email or Password."
}
json到c#类是:
public class RootObject
{
public bool status { get; set; }
public int statusCode { get; set; }
public string response { get; set; }
}
在具有返回类型字符串的属性下面的“RootObject”类中
公共字符串响应{get;组; }
I am facing issue in deserializing object
Service Call function :
private async Task GetService_SignIn()
{
try
{
string url = ServiceURLs.SignIn + "email=" + txtEmail.Text + "&password=" + txtPassword.Text;
var Service_response = await GetResponseFromWebService.GetResponse<SignIn.RootObject>(url);
if (Service_response != null)
{
if (Service_response.status)
{
// Application.Current.MainPage = new SideMenu();
Alert("Success", "Login success", "icon.png", Color.Green);
}
else
{
if (Service_response.statusCode == 417)
{
Alert("Alert", "WebServer Exception", "icon.png", Color.Red);
}
else if (Service_response.statusCode == 203)
{
Alert("Alert", "Invalid Email or Password", "icon.png", Color.Red);
}
}
}
else
{
Alert("Alert", "WebServer not Responding", "icon.png", Color.Red);
}
}
catch (WebException ex)
{
Alert("Exception", ex.Message, "icon.png", Color.Red);
}
}
Common class for Getting Response:
public static async Task<T> GetResponse<T>(string URI) where T : class
{
if (NetworkInterface.GetIsNetworkAvailable())
{
HttpClient httpClient = new HttpClient();
//httpClient.DefaultRequestHeaders.IfModifiedSince = DateTimeOffset.Now;
//httpClient.DefaultRequestHeaders.TryAddWithoutValidation("Token", "dc642a7f5bd64912");
var request = new HttpRequestMessage(HttpMethod.Get, URI);
if (request.Headers.CacheControl == null)
{
request.Headers.CacheControl = new System.Net.Http.Headers.CacheControlHeaderValue();
}
request.Headers.CacheControl.NoCache = true;
var response1 = await httpClient.SendAsync(request);
if (response1 != null && response1.IsSuccessStatusCode)
{
var responseString = await response1.Content.ReadAsStringAsync();
if (!string.IsNullOrWhiteSpace(responseString))
{
return JsonConvert.DeserializeObject<T>(responseString);
}
}
}
return null;
}
When email and password is invalid then I got exception from below line
return JsonConvert.DeserializeObject(responseString);
How to switch between two classes as per response? if I haven't deserialized json response how can know the status code?
How to handle this kind of setuation in c#?
2 years ago
假设您使用的是Newtonsoft - 您可以在
RootObject
的Response
属性中添加JsonConverter属性 . 转换器可以检测响应是否为字符串(在运行时)并将其分配给Response
实例上的某个属性 .更多详细信息here关于如何创建一个和here关于如何使用属性分配属性 .
示例json-converter看起来像:
并且,用法: