We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94b62ba commit 25b4896Copy full SHA for 25b4896
src/Serilog.Sinks.AzureTableStorage/Sinks/KeyGenerator/PropertiesKeyGenerator.cs
@@ -9,7 +9,7 @@ namespace Serilog.Sinks.AzureTableStorage.Sinks.KeyGenerator
9
public class PropertiesKeyGenerator : DefaultKeyGenerator
10
{
11
// Valid RowKey name characters
12
- static readonly Regex _rowKeyNotAllowedMatch = new Regex(@"(\\|/|#|\?|\r\n?|\n)");
+ static readonly Regex _rowKeyNotAllowedMatch = new Regex(@"(\\|/|#|\?|[\x00-\x1f]|[\x7f-\x9f])");
13
14
/// <summary>
15
/// Generate a valid string for a table property key by removing invalid characters
0 commit comments