Compartilhar via


ModulePropertiesPage.Tasks Propriedade

Definição

Obtém a coleção de lista de tarefas para a página.

protected:
 virtual property Microsoft::Web::Management::Client::TaskListCollection ^ Tasks { Microsoft::Web::Management::Client::TaskListCollection ^ get(); };
protected override Microsoft.Web.Management.Client.TaskListCollection Tasks { get; }
member this.Tasks : Microsoft.Web.Management.Client.TaskListCollection
Protected Overrides ReadOnly Property Tasks As TaskListCollection

Valor da propriedade

A coleção de lista de tarefas da página.

Exemplos

O exemplo a seguir envia cada lista de tarefas para o ouvinte de rastreamento.

void TrcTasks() {
    TaskListCollection tlc = Tasks;

    foreach (TaskList tl in tlc) {
        Trace.WriteLine(tl.ToString());
    }
}

Aplica-se a