All Downloads are FREE. Search and download functionalities are using the official Maven repository.

csharp-functions.HttpMethod.mustache Maven / Gradle / Ivy

There is a newer version: 7.6.0
Show newest version
{{>partial_header}}

namespace {{packageName}}.Client
{
    /// 
    /// Http methods supported by swagger
    /// 
    public enum HttpMethod
    {
        /// HTTP GET request.
        Get,
        /// HTTP POST request.
        Post,
        /// HTTP PUT request.
        Put,
        /// HTTP DELETE request.
        Delete,
        /// HTTP HEAD request.
        Head,
        /// HTTP OPTIONS request.
        Options,
        /// HTTP PATCH request.
        Patch
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy