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