TaskManagementTask(String, String, String, String, Boolean) Constructor

Definition

Initializes a new instance of the TaskManagementTask class.

public TaskManagementTask(string id, string title, string? reminder = default, string? due = default, bool isCompleted = false);
new Microsoft.SemanticKernel.Plugins.MsGraph.Models.TaskManagementTask : string * string * string * string * bool -> Microsoft.SemanticKernel.Plugins.MsGraph.Models.TaskManagementTask
Public Sub New (id As String, title As String, Optional reminder As String = Nothing, Optional due As String = Nothing, Optional isCompleted As Boolean = false)

Parameters

id
String

ID of the task.

title
String

Title of the task.

reminder
String

Reminder date/time for the task.

due
String

Task's due date/time.

isCompleted
Boolean

True if the task is completed, otherwise false.

Applies to