Пример #1
0
		public object Patch(VerbMatch1 request)
		{
			return new VerbMatch1Response { Result = HttpMethods.Patch };
		}
Пример #2
0
		public object Get(VerbMatch1 request)
		{
			return new VerbMatch1Response { Result = HttpMethods.Get };
		}
Пример #3
0
		public object Delete(VerbMatch1 request)
		{
			return new VerbMatch1Response { Result = HttpMethods.Delete };
		}
Пример #4
0
		public object Any(VerbMatch1 request)
		{
			throw new NotImplementedException();
		}
Пример #5
0
 public object Patch(VerbMatch1 request)
 {
     return(new VerbMatch1Response {
         Result = HttpMethods.Patch
     });
 }
Пример #6
0
 public object Delete(VerbMatch1 request)
 {
     return(new VerbMatch1Response {
         Result = HttpMethods.Delete
     });
 }
Пример #7
0
 public object Get(VerbMatch1 request)
 {
     return(new VerbMatch1Response {
         Result = HttpMethods.Get
     });
 }
Пример #8
0
 public object Any(VerbMatch1 request)
 {
     throw new NotImplementedException();
 }