Share via


Annotation Constructors

Definition

Overloads

Annotation()

Initializes a new instance of the Annotation class.

Annotation(String, String, Nullable<DateTime>, String, String, String)

Initializes a new instance of the Annotation class.

Annotation()

Initializes a new instance of the Annotation class.

public Annotation ();
Public Sub New ()

Applies to

Annotation(String, String, Nullable<DateTime>, String, String, String)

Initializes a new instance of the Annotation class.

public Annotation (string annotationName = default, string category = default, DateTime? eventTime = default, string id = default, string properties = default, string relatedAnnotation = default);
new Microsoft.Azure.Management.ApplicationInsights.Management.Models.Annotation : string * string * Nullable<DateTime> * string * string * string -> Microsoft.Azure.Management.ApplicationInsights.Management.Models.Annotation
Public Sub New (Optional annotationName As String = Nothing, Optional category As String = Nothing, Optional eventTime As Nullable(Of DateTime) = Nothing, Optional id As String = Nothing, Optional properties As String = Nothing, Optional relatedAnnotation As String = Nothing)

Parameters

annotationName
String

Name of annotation

category
String

Category of annotation, free form

eventTime
Nullable<DateTime>

Time when event occurred

id
String

Unique Id for annotation

properties
String

Serialized JSON object for detailed properties

relatedAnnotation
String

Related parent annotation if any

Applies to