public object Patch(VerbMatch1 request)
		{
			return new VerbMatch1Response { Result = HttpMethods.Patch };
		}
		public object Get(VerbMatch1 request)
		{
			return new VerbMatch1Response { Result = HttpMethods.Get };
		}
		public object Delete(VerbMatch1 request)
		{
			return new VerbMatch1Response { Result = HttpMethods.Delete };
		}
		public object Any(VerbMatch1 request)
		{
			throw new NotImplementedException();
		}
Beispiel #5
0
 public object Patch(VerbMatch1 request)
 {
     return(new VerbMatch1Response {
         Result = HttpMethods.Patch
     });
 }
Beispiel #6
0
 public object Delete(VerbMatch1 request)
 {
     return(new VerbMatch1Response {
         Result = HttpMethods.Delete
     });
 }
Beispiel #7
0
 public object Get(VerbMatch1 request)
 {
     return(new VerbMatch1Response {
         Result = HttpMethods.Get
     });
 }
Beispiel #8
0
 public object Any(VerbMatch1 request)
 {
     throw new NotImplementedException();
 }