9 lines
217 B
C#
9 lines
217 B
C#
using System.Collections.Specialized;
|
|
|
|
namespace EmbedIO.Internal
|
|
{
|
|
internal sealed class LockableNameValueCollection : NameValueCollection
|
|
{
|
|
public void MakeReadOnly() => IsReadOnly = true;
|
|
}
|
|
} |