MSDeployLogEntry Constructors

Definition

Overloads

MSDeployLogEntry()

Initializes a new instance of the MSDeployLogEntry class.

MSDeployLogEntry(Nullable<DateTime>, Nullable<MSDeployLogEntryType>, String)

Initializes a new instance of the MSDeployLogEntry class.

MSDeployLogEntry()

Initializes a new instance of the MSDeployLogEntry class.

public MSDeployLogEntry ();
Public Sub New ()

Applies to

MSDeployLogEntry(Nullable<DateTime>, Nullable<MSDeployLogEntryType>, String)

Initializes a new instance of the MSDeployLogEntry class.

public MSDeployLogEntry (DateTime? time = default, Microsoft.Azure.Management.AppService.Fluent.Models.MSDeployLogEntryType? type = default, string message = default);
new Microsoft.Azure.Management.AppService.Fluent.Models.MSDeployLogEntry : Nullable<DateTime> * Nullable<Microsoft.Azure.Management.AppService.Fluent.Models.MSDeployLogEntryType> * string -> Microsoft.Azure.Management.AppService.Fluent.Models.MSDeployLogEntry
Public Sub New (Optional time As Nullable(Of DateTime) = Nothing, Optional type As Nullable(Of MSDeployLogEntryType) = Nothing, Optional message As String = Nothing)

Parameters

time
Nullable<DateTime>

Timestamp of log entry

type
Nullable<MSDeployLogEntryType>

Log entry type. Possible values include: 'Message', 'Warning', 'Error'

message
String

Log entry message

Applies to