ln.http/ln.http/HttpArgumentSource.cs

15 lines
219 B
C#
Raw Normal View History

2022-02-07 09:29:30 +01:00
using System;
namespace ln.http
{
[Flags]
public enum HttpArgumentSource : int{
AUTO = -1,
CONTENT = (1<<0),
PARAMETER = (1<<1),
HEADER = (1<<2),
QUERY = (1<<3)
}
}