-
Updated
Aug 7, 2021 - C#
netstandard
Here are 813 public repositories matching this topic...
-
Updated
Jul 13, 2021 - C#
-
Updated
Jun 30, 2021 - C#
-
Updated
Aug 11, 2021 - C#
-
Updated
Jul 11, 2021 - C#
-
Updated
Aug 7, 2021 - C#
-
Updated
May 12, 2021 - C#
-
Updated
Aug 2, 2021 - C#
-
Updated
Aug 4, 2021 - HTML
-
Updated
Aug 12, 2021 - C#
-
Updated
Aug 12, 2021 - C#
-
Updated
Aug 2, 2021 - C#
-
Updated
Aug 13, 2021 - C#
Describe the bug
A clear and concise description of the bug.
when my asp.net core 3.1 app host in IIS, the url console is 127.0.0.1,so,when i have Multiple instances,the instances name will be the same,such as 127.0.0.1:svaname:port,eureka server think they are a single instance.
i print the console in source code:
. 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
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#
Supported scenarios and unsupported scenarios are not well explained outside the example on the README.
Improve Documentation with more examples and explanations of what will/won't work.
-
Set up Github Pages site with great documentation
-
Improve & Update README
-
XML <summary> tags on classes & methods.
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.PlotViewwith a transparent background: it throws if you set itsBackColorto transparent. To avoid this, it is necessary to set theControlStyles.SupportsTransparentBackColorstyle totrueon thePlotView; however,Control.SetStyleis protected, so consumers must resort to reflection or extendingPlotViewto do so. This could be