예제 #1
0
 public object GetDetails()
 {
     return(new
     {
         WebExceptionStatus = WebExceptionStatus.ToNullable(),
         SocketError = SocketError.ToNullable(),
         Response = Response.Map(r => new
         {
             Code = r.Code,
             Content = r.Value
         }).GetOrNull()
     });
 }