C# 클래스 Microsoft.AspNet.WebHooks.MemoryWebHookStore

Provides an implementation of IWebHookStore storing registered WebHooks in memory.
Actual deployments should replace this with a persistent store, for example provided by Microsoft.AspNet.WebHooks.Custom.AzureStorage.
상속: Microsoft.AspNet.WebHooks.WebHookStore
파일 보기 프로젝트 열기: aspnet/WebHooks

공개 메소드들

메소드 설명
DeleteAllWebHooksAsync ( string user ) : System.Threading.Tasks.Task
DeleteWebHookAsync ( string user, string id ) : Task
GetAllWebHooksAsync ( string user ) : Task>
InsertWebHookAsync ( string user, WebHook webHook ) : Task
LookupWebHookAsync ( string user, string id ) : Task
QueryWebHooksAcrossAllUsersAsync ( IEnumerable actions, Func predicate ) : Task>
QueryWebHooksAsync ( string user, IEnumerable actions, Func predicate ) : Task>
UpdateWebHookAsync ( string user, WebHook webHook ) : Task

비공개 메소드들

메소드 설명
DefaultPredicate ( WebHook webHook, string user ) : bool

메소드 상세

DeleteAllWebHooksAsync() 공개 메소드

public DeleteAllWebHooksAsync ( string user ) : System.Threading.Tasks.Task
user string
리턴 System.Threading.Tasks.Task

DeleteWebHookAsync() 공개 메소드

public DeleteWebHookAsync ( string user, string id ) : Task
user string
id string
리턴 Task

GetAllWebHooksAsync() 공개 메소드

public GetAllWebHooksAsync ( string user ) : Task>
user string
리턴 Task>

InsertWebHookAsync() 공개 메소드

public InsertWebHookAsync ( string user, WebHook webHook ) : Task
user string
webHook WebHook
리턴 Task

LookupWebHookAsync() 공개 메소드

public LookupWebHookAsync ( string user, string id ) : Task
user string
id string
리턴 Task

QueryWebHooksAcrossAllUsersAsync() 공개 메소드

public QueryWebHooksAcrossAllUsersAsync ( IEnumerable actions, Func predicate ) : Task>
actions IEnumerable
predicate Func
리턴 Task>

QueryWebHooksAsync() 공개 메소드

public QueryWebHooksAsync ( string user, IEnumerable actions, Func predicate ) : Task>
user string
actions IEnumerable
predicate Func
리턴 Task>

UpdateWebHookAsync() 공개 메소드

public UpdateWebHookAsync ( string user, WebHook webHook ) : Task
user string
webHook WebHook
리턴 Task