コード例 #1
0
		public object Patch(EchoMethod request)
		{
			return new EchoMethodResponse { Result = HttpMethods.Patch };
		}
コード例 #2
0
		public object Delete(EchoMethod request)
		{
			return new EchoMethodResponse { Result = HttpMethods.Delete };
		}
コード例 #3
0
		public object Post(EchoMethod request)
		{
			return new EchoMethodResponse { Result = HttpMethods.Post };
		}
コード例 #4
0
 public object Patch(EchoMethod request)
 {
     return(new EchoMethodResponse {
         Result = HttpMethods.Patch
     });
 }
コード例 #5
0
 public object Delete(EchoMethod request)
 {
     return(new EchoMethodResponse {
         Result = HttpMethods.Delete
     });
 }
コード例 #6
0
 public object Post(EchoMethod request)
 {
     return(new EchoMethodResponse {
         Result = HttpMethods.Post
     });
 }