-
Updated
Nov 6, 2021 - C#
netstandard
Here are 826 public repositories matching this topic...
-
Updated
Oct 8, 2021 - C#
-
Updated
Nov 8, 2021 - C#
-
Updated
Oct 15, 2021 - C#
-
Updated
Oct 26, 2021 - C#
-
Updated
Oct 28, 2021 - C#
-
Updated
Nov 8, 2021 - C#
-
Updated
Nov 7, 2021 - C#
-
Updated
Oct 11, 2021 - HTML
-
Updated
Nov 1, 2021 - C#
-
Updated
Nov 5, 2021 - C#
-
Updated
Nov 7, 2021 - C#
-
Updated
Nov 7, 2021 - C#
-
Updated
Nov 6, 2021 - C#
We want to monitor the application with AppDynamics, per AppDynamics, in order to monitor it in linux container, it has to be rabbitmq.client v6+, right now the Steeltoe.Messaging.RabbitMQ is v5.1.2.
Change the refrenced package of RabbitMQ.Client from 5.1.2 to 6.2.2
-
Updated
Nov 8, 2021 - C#
-
Updated
Nov 5, 2021 - C#
See #143 for example and Autofac documentation link.
-
Updated
Oct 28, 2021 - C#
Hello,
Is there a way to get the measurement properties, as described in chapter 8.8 in the PDF Reference document? Thanks.
-
Updated
Nov 6, 2021 - C#
-
Updated
Aug 4, 2021 - C#
-
Updated
Nov 5, 2021 - C#
When adding multiple rpc target classes, if multiple targets contain the same\similar method, the method in first target added is used (as documented). But I miss an option to disallow duplicates, as this is (in my case) always an error. Alternatives:
-Preferably a setting on JsonRpc itself that produce error when AddLocalRpcTarget is called
-A setting on JsonRpc itself that produce error during
-
Updated
Feb 7, 2021 - C#
How can I remove the charset=utf-8 from the request header when using the SendQueryAsync?
I have tried setting the GraphQLHttpClientOptions.MediaType to "application/json" (wich I also think is the default, so it shouldn't be necessary), but I still keep getting the Content-type header of the request to : application/json; charset=utf-8, which is rejected by the service I'm requesting, it needs
C# has multiple types and ways of expressing a linear collection of finite data (that is, a type that contains n instances of some type T
). Passing this collection to native code typically requires the user to contain it in an array, pin it, and acquire a pointer to the first element of the array.
Traditional P/Invoke allows a user to pass an array directly, and performs these operations un
-
Updated
Jan 31, 2020 - C#
-
Updated
Feb 3, 2021 - C#
Improve this page
Add a description, image, and links to the netstandard topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the netstandard topic, visit your repo's landing page and select "manage topics."
It is currently a pain to use an
OxyPlot.WinfowsForms.PlotView
with a transparent background: it throws if you set itsBackColor
to transparent. To avoid this, it is necessary to set theControlStyles.SupportsTransparentBackColor
style totrue
on thePlotView
; however,Control.SetStyle
is protected, so consumers must resort to reflection or extendingPlotView
to do so. This could be