다음을 통해 공유


IssueCommentContract Constructors

Definition

Overloads

IssueCommentContract()

Initializes a new instance of the IssueCommentContract class.

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

Initializes a new instance of the IssueCommentContract class.

IssueCommentContract()

Initializes a new instance of the IssueCommentContract class.

public IssueCommentContract ();
Public Sub New ()

Applies to

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

Initializes a new instance of the IssueCommentContract class.

public IssueCommentContract (string text, string userId, string id = default, string name = default, string type = default, DateTime? createdDate = default);
new Microsoft.Azure.Management.ApiManagement.Models.IssueCommentContract : string * string * string * string * string * Nullable<DateTime> -> Microsoft.Azure.Management.ApiManagement.Models.IssueCommentContract
Public Sub New (text As String, userId As String, Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional createdDate As Nullable(Of DateTime) = Nothing)

Parameters

text
String

Comment text.

userId
String

A resource identifier for the user who left the comment.

id
String

Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}

name
String

The name of the resource

type
String

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

createdDate
Nullable<DateTime>

Date and time when the comment was created.

Applies to