Share via


BicepList<T> Constructors

Definition

Overloads

BicepList<T>()

Creates a new BicepList.

BicepList<T>(IList<BicepValue<T>>)

Creates a new BicepList with literal values.

BicepList<T>()

Source:
BicepListOfT.cs
Source:
BicepListOfT.cs

Creates a new BicepList.

public BicepList ();
Public Sub New ()

Applies to

BicepList<T>(IList<BicepValue<T>>)

Source:
BicepListOfT.cs
Source:
BicepListOfT.cs

Creates a new BicepList with literal values.

public BicepList (System.Collections.Generic.IList<Azure.Provisioning.BicepValue<T>>? values);
new Azure.Provisioning.BicepList<'T> : System.Collections.Generic.IList<Azure.Provisioning.BicepValue<'T>> -> Azure.Provisioning.BicepList<'T>
Public Sub New (values As IList(Of BicepValue(Of T)))

Parameters

values
IList<BicepValue<T>>

Applies to