Git Product home page Git Product logo

appy.flurl's Introduction

App.Flurl

AppyWay logo

What is Appy.Flurl?

Flurl HTTP client library extensions for NETCore and NET 5.0.

Json Serializers

Package Latest Stable
Flurl.Serialization.TextJson Nuget Package

Table of Contents

Flurl System.Text.Json Serializer

Flurl have a default JsonSerialization implementation registered globally using NewtonsoftJsonSerializer, but you can change it for any other implementation.

Installing

Install using the Flurl.Serialization.TextJson NuGet package:

PM> Install-Package Flurl.Serialization.TextJson

Usage

As explained in the Flurl documentation there are different ways to setup the default JsonSerializer:

  • Call once at application startup:
var jsonSettings = new JsonSerializerOptions 
{ 
    IgnoreNullValues = true 
};

FlurlHttp.Configure(settings => settings.WithTextJsonSerializer(jsonSettings));
  • Configure using directly the FlurlClient
public class AppyApiClient
{
    readonly IFlurlClient _client;

    public AppyApiClient(HttpClient httpClient)
    {
        var jsonSettings = new JsonSerializerOptions 
        { 
            IgnoreNullValues = true 
        };

        _client = new FlurlClient(httpClient).Configure(settings => settings.WithTextJsonSerializer(jsonSettings));
    }

    public Task<GetCustomerByIdQueryResult> Execute(GetCustomerByIdQuery query, CancellationToken cancellationToken)
    {
        return _client
            .Request("queries/getCustomerById")
            .PostJsonAsync(query, cancellationToken)
            .ReceiveJson<GetCustomerByIdQueryResult>();
    }
}

Contribute

It would be awesome if you would like to contribute code or help with bugs. Just follow the guidelines CONTRIBUTING

appy.flurl's People

Contributors

jrgcubano avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

notek13

appy.flurl's Issues

Update the readme

IgnoreNullValues is obsolete.
It has been replaced by DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingDefault for example.

        var jsonSettings = new JsonSerializerOptions 
        { 
            IgnoreNullValues = true 
        };

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.