Share via


Status Constructors

Definition

Overloads

Status()

Initializes a new instance of the Status class.

Status(String, String, Nullable<DateTime>)

Initializes a new instance of the Status class.

Status()

Initializes a new instance of the Status class.

public Status ();
Public Sub New ()

Applies to

Status(String, String, Nullable<DateTime>)

Initializes a new instance of the Status class.

public Status (string displayStatus = default, string message = default, DateTime? timestamp = default);
new Microsoft.Azure.Management.ContainerRegistry.Models.Status : string * string * Nullable<DateTime> -> Microsoft.Azure.Management.ContainerRegistry.Models.Status
Public Sub New (Optional displayStatus As String = Nothing, Optional message As String = Nothing, Optional timestamp As Nullable(Of DateTime) = Nothing)

Parameters

displayStatus
String

The short label for the status.

message
String

The detailed message for the status, including alerts and error messages.

timestamp
Nullable<DateTime>

The timestamp when the status was changed to the current value.

Applies to