MemoryManager.AppMemoryUsageLimitChanging 이벤트

정의

앱에서 사용할 수 있는 총 메모리의 한도가 변경되기 직전에 발생합니다.

// Register
static event_token AppMemoryUsageLimitChanging(EventHandler<AppMemoryUsageLimitChangingEventArgs> const& handler) const;

// Revoke with event_token
static void AppMemoryUsageLimitChanging(event_token const* cookie) const;

// Revoke with event_revoker
static MemoryManager::AppMemoryUsageLimitChanging_revoker AppMemoryUsageLimitChanging(auto_revoke_t, EventHandler<AppMemoryUsageLimitChangingEventArgs> const& handler) const;
public static event System.EventHandler<AppMemoryUsageLimitChangingEventArgs> AppMemoryUsageLimitChanging;
function onAppMemoryUsageLimitChanging(eventArgs) { /* Your code */ }
Windows.System.MemoryManager.addEventListener("appmemoryusagelimitchanging", onAppMemoryUsageLimitChanging);
Windows.System.MemoryManager.removeEventListener("appmemoryusagelimitchanging", onAppMemoryUsageLimitChanging);
- or -
Windows.System.MemoryManager.onappmemoryusagelimitchanging = onAppMemoryUsageLimitChanging;
Public Shared Custom Event AppMemoryUsageLimitChanging As EventHandler(Of AppMemoryUsageLimitChangingEventArgs) 

이벤트 유형

적용 대상