Stanislav Molchanovskiy
Stanislav Molchanovskiy
The header is not sent at the redirect by design. However, if the host is trusted (there is a token in `IAccessTokens` for it) the header can be sent.
It would be great to be able to enable balancing on the client. Take the [grpc client](https://docs.microsoft.com/en-us/aspnet/core/grpc/loadbalancing?view=aspnetcore-6.0) as an example. At first, it is necessary to implement load-balancing with static...
It would be great to be able to enable balancing on the client. Take the [grpc client](https://docs.microsoft.com/en-us/aspnet/core/grpc/loadbalancing?view=aspnetcore-6.0) as an example. After implementing a static resolver https://github.com/nclient/NClient/issues/436, we can do DNS...
GraphQL is quite a popular protocol, so the client should support it. The [graphql-dotnet](https://github.com/graphql-dotnet/graphql-dotnet) library can be used for this. Before implementation, you need to discuss the design. As an...
I would like to use the RPC protocol over HTTP or sockets. For example, to interact with the [Ethereum API](https://ethereum.org/en/developers/docs/apis/json-rpc/) or [Random.org](https://api.random.org/dashboard). There are various specifications of the RPC protocol...
It is necessary to implement a comparison of the performance of NClient virtual controllers with native ones ASP.NET controllers when the execution context is the same, the execution tasks are...
When I want to write in a functional style, I want to skip creating interfaces and use functions. However, it is now impossible to create a client without an interface....
The [NClient.Providers.Mapping.LanguageExt](https://github.com/nclient/NClient/wiki/Providers#nclientprovidersmappinglanguageext) package has the mapper for `Either` monad, but the [language-ext](https://github.com/louthy/language-ext) library contains much more monads. It would be great to implement mappers for all monads by analogy with...
**Problem** I want to make sure that my client interfaces are valid before running the app. So I want to write tests that will confirm validity. To do this, I...