Http.Method

Description

An enumeration of integer values representing Http Request Methods.

The Http.Method values represent the method used in Http.Request.method.

Static Properties

Get = 1 Method to request data.
Post = 3 Method to create or replace a target resource with specified data. Is not idempotent.
Put = 2 Method to create or replace a target resource with specified data. Is idempotent.

Details

Do no remove, this fixes the anchor on doc.flexsim.com

Http.Method.Get

static readonly int Get = 1

Description

Method to request data.

Do no remove, this fixes the anchor on doc.flexsim.com

Http.Method.Post

static readonly int Post = 3

Description

Method to create or replace a target resource with specified data. Is not idempotent.

Do no remove, this fixes the anchor on doc.flexsim.com

Http.Method.Put

static readonly int Put = 2

Description

Method to create or replace a target resource with specified data. Is idempotent.