共用方式為


EventType Constructors

Definition

Overloads

EventType()

Initializes a new instance of the EventType class.

EventType(String, String, String, String, String, String, Nullable<Boolean>)

Initializes a new instance of the EventType class.

EventType()

Initializes a new instance of the EventType class.

public EventType ();
Public Sub New ()

Applies to

EventType(String, String, String, String, String, String, Nullable<Boolean>)

Initializes a new instance of the EventType class.

public EventType (string id = default, string name = default, string type = default, string displayName = default, string description = default, string schemaUrl = default, bool? isInDefaultSet = default);
new Microsoft.Azure.Management.EventGrid.Models.EventType : string * string * string * string * string * string * Nullable<bool> -> Microsoft.Azure.Management.EventGrid.Models.EventType
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional displayName As String = Nothing, Optional description As String = Nothing, Optional schemaUrl As String = Nothing, Optional isInDefaultSet As Nullable(Of Boolean) = Nothing)

Parameters

id
String

Fully qualified identifier of the resource.

name
String

Name of the resource.

type
String

Type of the resource.

displayName
String

Display name of the event type.

description
String

Description of the event type.

schemaUrl
String

Url of the schema for this event type.

isInDefaultSet
Nullable<Boolean>

IsInDefaultSet flag of the event type.

Applies to