C# 클래스 AzureTodo.TodoItemManager

Manager classes are an abstraction on the data access layers
파일 보기 프로젝트 열기: xamarin/mac-samples 1 사용 예제들

공개 메소드들

메소드 설명
DeleteTodoItemAsync ( AzureTodo.TodoItem item ) : System.Threading.Tasks.Task

Deletes the todo item from Azure storage async.

GetTodoItemAsync ( string id ) : Task

Gets the todo item async.

GetTodoItemsAsync ( ) : Task>

Gets all todo items async.

SaveTodoItemAsync ( AzureTodo.TodoItem item ) : System.Threading.Tasks.Task

Saves the todo item to Azure storage async.

TodoItemManager ( ) : System

메소드 상세

DeleteTodoItemAsync() 공개 메소드

Deletes the todo item from Azure storage async.
public DeleteTodoItemAsync ( AzureTodo.TodoItem item ) : System.Threading.Tasks.Task
item AzureTodo.TodoItem The Item to delete.
리턴 System.Threading.Tasks.Task

GetTodoItemAsync() 공개 메소드

Gets the todo item async.
public GetTodoItemAsync ( string id ) : Task
id string The ID of the item to get.
리턴 Task

GetTodoItemsAsync() 공개 메소드

Gets all todo items async.
public GetTodoItemsAsync ( ) : Task>
리턴 Task>

SaveTodoItemAsync() 공개 메소드

Saves the todo item to Azure storage async.
public SaveTodoItemAsync ( AzureTodo.TodoItem item ) : System.Threading.Tasks.Task
item AzureTodo.TodoItem The Item to save.
리턴 System.Threading.Tasks.Task

TodoItemManager() 공개 메소드

public TodoItemManager ( ) : System
리턴 System