Nevron Open Vision Documentation
Nevron.Nov.Networking Namespace / ENHttpRequestMethod Enumeration


In This Topic
    ENHttpRequestMethod Enumeration
    In This Topic
    Enumerates the supported Http request methods.
    Syntax
    'Declaration
     
    
    Public Enum ENHttpRequestMethod 
       Inherits System.Enum
    'Usage
     
    
    Dim instance As ENHttpRequestMethod
    public enum ENHttpRequestMethod : System.Enum 
    Members
    MemberDescription
    CONNECTThe CONNECT method establishes a tunnel to the server identified by the target resource.
    DELETEThe DELETE method deletes the specified resource.
    GETThe GET method requests a representation of the specified resource. Requests using GET should only retrieve data.
    HEADThe HEAD method asks for a response identical to a GET request, but without the response body.
    OPTIONSThe OPTIONS method describes the communication options for the target resource.
    PATCHThe PATCH method applies partial modifications to a resource.
    POSTThe POST method submits an entity to the specified resource, often causing a change in state or side effects on the server.
    PUTThe PUT method replaces all current representations of the target resource with the request payload.
    TRACEThe TRACE method performs a message loop-back test along the path to the target resource.
    UNKNOWNThe Unknown method
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             Nevron.Nov.Networking.ENHttpRequestMethod

    Requirements

    Target Platforms: Windows 11, Windows 10, Windows 7, Windows Server 2019, Windows Server 2016, Windows Server 2012 R2, Windows Server 2012, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later)

    See Also