BatchBook.Todo.Update C# (CSharp) Метод

Update() публичный статический Метод

public static Update ( int todoId, string title, string description, System.DateTime dueDate, bool flagged, bool complete, string assignedTo ) : void
todoId int
title string
description string
dueDate System.DateTime
flagged bool
complete bool
assignedTo string
Результат void
        public static void Update(
            int todoId,
            string title,
            string description,
            DateTime dueDate,
            bool flagged,
            bool complete,
            string assignedTo)
        {
            Update(Util.DefaultApiKey,
                todoId,
                title,
                description,
                dueDate,
                flagged,
                complete,
                assignedTo);
        }

Same methods

Todo::Update ( string apiKey, int todoId, string title, string description, System.DateTime dueDate, bool flagged, bool complete, string assignedTo ) : void