CSharpHttpServer/SimpleHttpServer/Types/IParameterConverter.cs

5 lines
136 B
C#

namespace SimpleHttpServer;
public interface IParameterConverter {
bool TryConvertFromString(string value, out object result);
}