Esempio n. 1
0
		public object Patch(VerbMatch1 request)
		{
			return new VerbMatch1Response { Result = HttpMethods.Patch };
		}
Esempio n. 2
0
		public object Get(VerbMatch1 request)
		{
			return new VerbMatch1Response { Result = HttpMethods.Get };
		}
Esempio n. 3
0
		public object Delete(VerbMatch1 request)
		{
			return new VerbMatch1Response { Result = HttpMethods.Delete };
		}
Esempio n. 4
0
		public object Any(VerbMatch1 request)
		{
			throw new NotImplementedException();
		}
Esempio n. 5
0
 public object Patch(VerbMatch1 request)
 {
     return(new VerbMatch1Response {
         Result = HttpMethods.Patch
     });
 }
Esempio n. 6
0
 public object Delete(VerbMatch1 request)
 {
     return(new VerbMatch1Response {
         Result = HttpMethods.Delete
     });
 }
Esempio n. 7
0
 public object Get(VerbMatch1 request)
 {
     return(new VerbMatch1Response {
         Result = HttpMethods.Get
     });
 }
Esempio n. 8
0
 public object Any(VerbMatch1 request)
 {
     throw new NotImplementedException();
 }