Share via


Int32OrStringV1.Implicit Operator

Definition

Overloads

Implicit(Int32 to Int32OrStringV1)

Gets the integer value as a Int32OrStringV1 instance.

Implicit(String to Int32OrStringV1)

Gets the string value as a Int32OrStringV1 instance.

Implicit(Int32 to Int32OrStringV1)

Source:
Int32OrStringV1.cs
Source:
Int32OrStringV1.cs

Gets the integer value as a Int32OrStringV1 instance.

public static implicit operator Aspire.Hosting.Kubernetes.Resources.Int32OrStringV1(int value);
static member op_Implicit : int -> Aspire.Hosting.Kubernetes.Resources.Int32OrStringV1
Public Shared Widening Operator CType (value As Integer) As Int32OrStringV1

Parameters

value
Int32

The integer to get.

Returns

An Int32OrStringV1 instance representing the integer value.

Applies to

Implicit(String to Int32OrStringV1)

Source:
Int32OrStringV1.cs
Source:
Int32OrStringV1.cs

Gets the string value as a Int32OrStringV1 instance.

public static implicit operator Aspire.Hosting.Kubernetes.Resources.Int32OrStringV1?(string? value);
static member op_Implicit : string -> Aspire.Hosting.Kubernetes.Resources.Int32OrStringV1
Public Shared Widening Operator CType (value As String) As Int32OrStringV1

Parameters

value
String

The string to get

Returns

An Int32OrStringV1 instance representing the string value.

Applies to