BicepValue<T> Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
BicepValue<T>(BicepExpression) |
Creates a new BicepValue. |
BicepValue<T>(Expression) |
Creates a new BicepValue. |
BicepValue<T>(T) |
Creates a new BicepValue. |
BicepValue<T>(BicepExpression)
- Source:
- BicepValueOfT.cs
Creates a new BicepValue.
public BicepValue (Azure.Provisioning.Expressions.BicepExpression expression);
new Azure.Provisioning.BicepValue<'T> : Azure.Provisioning.Expressions.BicepExpression -> Azure.Provisioning.BicepValue<'T>
Public Sub New (expression As BicepExpression)
Parameters
- expression
- BicepExpression
An expression that evaluates to the value.
Applies to
BicepValue<T>(Expression)
- Source:
- BicepValueOfT.cs
Creates a new BicepValue.
public BicepValue (Azure.Provisioning.Expressions.Expression expression);
new Azure.Provisioning.BicepValue<'T> : Azure.Provisioning.Expressions.Expression -> Azure.Provisioning.BicepValue<'T>
Public Sub New (expression As Expression)
Parameters
- expression
- Expression
An expression that evaluates to the value.
Applies to
BicepValue<T>(T)
- Source:
- BicepValueOfT.cs
- Source:
- BicepValueOfT.cs
Creates a new BicepValue.
public BicepValue (T literal);
new Azure.Provisioning.BicepValue<'T> : 'T -> Azure.Provisioning.BicepValue<'T>
Public Sub New (literal As T)
Parameters
- literal
- T
The value.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Azure SDK for .NET