how to get error code from exception in c#
try {
// some operation causing an exception
}
catch (SqlException e) {
if (e.ErrorCode == 0x80131904)
// ...
return null;
throw;
}
how to get error code from exception in c#
try {
// some operation causing an exception
}
catch (SqlException e) {
if (e.ErrorCode == 0x80131904)
// ...
return null;
throw;
}
c# return error status code based on exception
return new NotModified();
public class NotModified : IHttpActionResult
{
public Task<HttpResponseMessage> ExecuteAsync(CancellationToken cancellationToken)
{
var response = new HttpResponseMessage(HttpStatusCode.NotModified);
return Task.FromResult(response);
}
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us