Initial Commit ...
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
namespace xHttpService.Constants {
|
||||
public partial struct ConfigurationNodeNames {
|
||||
public const string HTTP_SERVICE_NODE_NAME = "HttpServiceConfiguration";
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
using xExceptions.Attributes;
|
||||
|
||||
namespace xHttpService.Constants {
|
||||
public enum XHttpMethod {
|
||||
[StringValue ("GET")]
|
||||
GET,
|
||||
|
||||
[StringValue ("POST")]
|
||||
POST,
|
||||
|
||||
[StringValue ("PUT")]
|
||||
PUT,
|
||||
|
||||
[StringValue ("DELETE")]
|
||||
DELETE
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user