示例#1
0
 public object Patch(VerbMatch2 request)
 {
     return(new VerbMatch2Response {
         Result = HttpMethods.Patch
     });
 }
示例#2
0
 public object Get(VerbMatch2 request)
 {
     return(new VerbMatch2Response {
         Result = HttpMethods.Get
     });
 }
示例#3
0
 public object Delete(VerbMatch2 request)
 {
     return(new VerbMatch2Response {
         Result = HttpMethods.Delete
     });
 }
示例#4
0
 public object Any(VerbMatch2 request)
 {
     throw new NotImplementedException();
 }
示例#5
0
		public object Patch(VerbMatch2 request)
		{
			return new VerbMatch2Response { Result = HttpMethods.Patch };
		}
示例#6
0
		public object Delete(VerbMatch2 request)
		{
			return new VerbMatch2Response { Result = HttpMethods.Delete };
		}
示例#7
0
		public object Get(VerbMatch2 request)
		{
			return new VerbMatch2Response { Result = HttpMethods.Get };
		}
示例#8
0
		public object Any(VerbMatch2 request)
		{
			throw new NotImplementedException();
		}