-
Updated
May 29, 2022 - C#
netstandard
Here are 830 public repositories matching this topic...
-
Updated
May 25, 2022 - C#
-
Updated
May 17, 2022 - C#
-
Updated
May 16, 2022 - C#
-
Updated
May 18, 2022 - C#
-
Updated
May 28, 2022 - C#
-
Updated
Apr 28, 2022 - C#
-
Updated
May 29, 2022 - C#
-
Updated
May 30, 2022 - C#
-
Updated
May 16, 2022 - HTML
-
Updated
May 30, 2022 - C#
-
Updated
May 30, 2022 - C#
-
Updated
May 29, 2022 - C#
-
Updated
May 24, 2022 - C#
Question
Can we force the new sanitizing key to be applied to the configuration on /refresh call?
Environment (please complete the following information):
- .NET Core 3.1.3
- Steeltoe Version 3.0.2
Additional context or links
I tried to work with Steeltoe's /env and /refresh endpoints. What I noticed is that the sanitizer works only when a project is started. When you add a k
-
Updated
May 28, 2022 - C#
Is your feature request related to a problem? Please describe.
No, I wouldn't say it's a "problem", but: At least for me, when VSTHRD111 happens, and I "Alt-Enter" to get to the suggested code fixes, the first code fix listed is always to use ConfigureAwait(true). Since it is the first listed, it is the default choice when you hit "Alt-Enter" then "Enter".
In my experience, that's a
Looks like the function below returns bytes with value 1 instead of 255 which produces near black png. for all other type of filters it works fine.
Filter: FlateDecode
ColorSpace: DeviceGray
BitsPerComponent: 1
public static byte[] Convert(ColorSpaceDetails details, IReadOnlyList decoded, int bitsPerComponent, int imageWidth, int imageHeight);
See #143 for example and Autofac documentation link.
-
Updated
May 6, 2022 - C#
-
Updated
May 12, 2022 - C#
-
Updated
May 30, 2022 - 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
Nov 5, 2021 - C#
-
Updated
Aug 4, 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
-
Updated
Feb 7, 2021 - C#
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
Feb 5, 2022 - 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.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