Type: DTO_ApiMethod

DTO for a method/endpoint on a controller.

Properties
Name Type Description Additional information
Name String

The Name of the Method.

Description String

The Description of the Method.

IsActive Boolean

Indicates if the Method is currently accessible.

RelativePathToMethod String

Relative Uri path mapped to this Method.

AbsolutePathToMethod String

Absolute Uri path mapped to this Method.

HttpMethod EHttpMethod

HTTP method allowed (e.g. GET or POST).

ExpectedResponseTypes Dictionary<HttpStatusCode,String>

Map of expected HTTP status code and object type responses.

AllowedRequestContentTypes List<String>

Allowed mime content types for the request.

AllowedResponseContentTypes List<String>

Allowed mime content types for the response.

Parameters List<DTO_ApiParameter>

Function parameters for this method.