Show / Hide Table of Contents

Enum CollectionFormatType

Namespace: Oci.Common.Http
Assembly: OCI.DotNetSDK.Common.dll
Syntax
public enum CollectionFormatType

Fields

Name Description
Csv

Comma separated values, e.g. queryparam=val1, val2, val3.

Multi

Assign each value to the query param separately, e.g. queryparam=val1&queryparm=val2.

Pipes

pipe separated values, e.g. queryparam=val1|val2|val3.

Ssv

Space separated values, e.g. queryparam=val1 val2 val3.

Tsv

Tab separated values, e.g. queryparam=val1\tval2\tval3.

In this article
Back to top