mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-08-14 15:42:08 +02:00
* Create WireMock.Net.MimePart project * . * REFACTOR * ILRepack * -- * ... * x * x * . * fix * public class MimePartMatcher * shared * min * . * <!--<DelaySign>true</DelaySign>--> * Update README.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
16 lines
341 B
C#
16 lines
341 B
C#
// Copyright © WireMock.Net
|
|
|
|
using System;
|
|
|
|
namespace WireMock.Constants;
|
|
|
|
/// <summary>
|
|
/// Some constants for Regex.
|
|
/// </summary>
|
|
internal static class RegexConstants
|
|
{
|
|
/// <summary>
|
|
/// The default timeout for regex operations.
|
|
/// </summary>
|
|
public static readonly TimeSpan DefaultTimeout = TimeSpan.FromSeconds(10);
|
|
} |